2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-28 12:57:52 +00:00

Implement __bool__

This commit is contained in:
Dan 2018-04-03 14:44:24 +02:00
parent 2da47d7b6b
commit 88292cf7d6

View File

@ -37,6 +37,9 @@ class Object:
def __str__(self) -> str:
return dumps(self, cls=Encoder, indent=4)
def __bool__(self) -> bool:
return True
def __eq__(self, other) -> bool:
return self.__dict__ == other.__dict__