Skip to content

Commit

Permalink
Fix mypy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewMckee4 committed Feb 7, 2025
1 parent f0baec2 commit 89cdeb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kfactory/serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
class DecoratorList(UserList[Any]):
"""Hashable decorator for a list."""

def __hash__(self) -> int:
def __hash__(self) -> int: # type: ignore[override]
"""Hash the list."""
return hash(tuple(self.data))

Expand Down

0 comments on commit 89cdeb9

Please sign in to comment.