Revert __eq__ removal (#8487)

Refs #8483
This commit is contained in:
Nikita Sobolev
2022-08-05 00:51:42 +03:00
committed by GitHub
parent a376da87bd
commit a03e8b4949
3 changed files with 3 additions and 0 deletions

View File

@@ -91,6 +91,7 @@ class TimerHandle(Handle):
def __le__(self, other: TimerHandle) -> bool: ...
def __gt__(self, other: TimerHandle) -> bool: ...
def __ge__(self, other: TimerHandle) -> bool: ...
def __eq__(self, other: object) -> bool: ...
class AbstractServer:
@abstractmethod