Skip to content

Commit

Permalink
Any type hint on __eq__
Browse files Browse the repository at this point in the history
Signed-off-by: Gabe Goodhart <gabe.l.hart@gmail.com>
  • Loading branch information
gabe-l-hart authored Jan 30, 2024
1 parent 8f31e19 commit 3e66b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/alog/alog.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ class _MultiEqualString:
def __init__(self, *strings: str) -> None:
self._strings = strings

def __eq__(self, other) -> bool:
def __eq__(self, other: Any) -> bool:
return other in self._strings


Expand Down

0 comments on commit 3e66b25

Please sign in to comment.