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:
@@ -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):
|
||||
|
Reference in New Issue
Block a user