mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-18 05:30:15 +00:00
Remove async from some method signatures. They are not asynchronous
This commit is contained in:
parent
d72754be1e
commit
652b3f90bc
@ -105,10 +105,10 @@ class BaseClient:
|
|||||||
async def resolve_peer(self, *args, **kwargs):
|
async def resolve_peer(self, *args, **kwargs):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
async def fetch_peers(self, *args, **kwargs):
|
def fetch_peers(self, *args, **kwargs):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
async def add_handler(self, *args, **kwargs):
|
def add_handler(self, *args, **kwargs):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
async def save_file(self, *args, **kwargs):
|
async def save_file(self, *args, **kwargs):
|
||||||
|
Loading…
Reference in New Issue
Block a user