Skip to content

Commit

Permalink
Fixed namespace error
Browse files Browse the repository at this point in the history
  • Loading branch information
goord authored and APJansen committed Feb 20, 2024
1 parent 1f5a925 commit dd4b98a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validphys2/src/validphys/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
def make_hashable(obj: Any):
# So that we don't infinitely recurse since frozenset and tuples
# are Sequences.
if isinstance(obj, typing.Hashable):
if isinstance(obj, Hashable):
return obj
elif isinstance(obj, Mapping):
return frozendict(obj)
Expand Down

0 comments on commit dd4b98a

Please sign in to comment.