From b07c13a5131c3c5fddf8b3940e7c44b8a7b264bc Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Wed, 5 Sep 2018 16:50:38 +0200 Subject: [PATCH] Remove useless definition PyCharm will complain about Long not being a bytes, let's not care. --- pyrogram/api/core/primitives/int.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyrogram/api/core/primitives/int.py b/pyrogram/api/core/primitives/int.py index 3de37151..4b9aded8 100644 --- a/pyrogram/api/core/primitives/int.py +++ b/pyrogram/api/core/primitives/int.py @@ -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