Python’s complaining because the inner set
objects are mutable and thus not hashable. The solution is to use frozenset
for the inner sets, to indicate that you have no intention of modifying them.
Python’s complaining because the inner set
objects are mutable and thus not hashable. The solution is to use frozenset
for the inner sets, to indicate that you have no intention of modifying them.