mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-08-04 04:00:18 +03:00
Add missing parenthesis around await keyword
This commit is contained in:
parent
946dd69211
commit
d980e947cf
|
@ -68,7 +68,7 @@ class EventBuilder(abc.ABC):
|
||||||
async def resolve(self, client):
|
async def resolve(self, client):
|
||||||
"""Helper method to allow event builders to be resolved before usage"""
|
"""Helper method to allow event builders to be resolved before usage"""
|
||||||
self.chats = await _into_id_set(client, self.chats)
|
self.chats = await _into_id_set(client, self.chats)
|
||||||
self._self_id = await client.get_me(input_peer=True).user_id
|
self._self_id = (await client.get_me(input_peer=True)).user_id
|
||||||
|
|
||||||
def _filter_event(self, event):
|
def _filter_event(self, event):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user