mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-25 10:53:44 +03:00
Fix super() initialisation call for EventCommon (#1182)
This commit is contained in:
parent
9730894a07
commit
0946a7902f
|
@ -134,7 +134,7 @@ class EventCommon(ChatGetter, abc.ABC):
|
|||
_event_name = 'Event'
|
||||
|
||||
def __init__(self, chat_peer=None, msg_id=None, broadcast=False):
|
||||
super().__init__(self, chat_peer, broadcast=broadcast)
|
||||
super().__init__(chat_peer, broadcast=broadcast)
|
||||
self._entities = {}
|
||||
self._client = None
|
||||
self._message_id = msg_id
|
||||
|
|
Loading…
Reference in New Issue
Block a user