2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-28 04:48:06 +00:00

Remove useless definition

PyCharm will complain about Long not being a bytes, let's not care.
This commit is contained in:
Dan 2018-09-05 16:50:38 +02:00
parent 024e3280c1
commit b07c13a513

View File

@ -35,9 +35,6 @@ class Int(Object):
class Long(Int):
SIZE = 8
def __new__(cls, *args):
return super().__new__(cls, *args)
class Int128(Int):
SIZE = 16