From 652b3f90bc8170a41b04b589d147d366a7858424 Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Thu, 17 Jan 2019 12:34:30 +0100 Subject: [PATCH] Remove async from some method signatures. They are not asynchronous --- pyrogram/client/ext/base_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyrogram/client/ext/base_client.py b/pyrogram/client/ext/base_client.py index 15d7637b..d33b5bb9 100644 --- a/pyrogram/client/ext/base_client.py +++ b/pyrogram/client/ext/base_client.py @@ -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):