Files
langgraph/libs/langgraph/tests/any_int.py
T
2024-08-08 15:29:40 -07:00

7 lines
162 B
Python

class AnyInt(int):
def __init__(self) -> None:
super().__init__()
def __eq__(self, other: object) -> bool:
return isinstance(other, int)