2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-09-05 00:35:10 +00:00

Remove async from some method signatures. They are not asynchronous

This commit is contained in:
Dan
2019-01-17 12:34:30 +01:00
parent d72754be1e
commit 652b3f90bc

View File

@@ -105,10 +105,10 @@ class BaseClient:
async def resolve_peer(self, *args, **kwargs):
pass
async def fetch_peers(self, *args, **kwargs):
def fetch_peers(self, *args, **kwargs):
pass
async def add_handler(self, *args, **kwargs):
def add_handler(self, *args, **kwargs):
pass
async def save_file(self, *args, **kwargs):