mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-31 20:54:51 +00:00
Remove async from some method signatures. They are not asynchronous
This commit is contained in:
parent
d72754be1e
commit
652b3f90bc
1 changed files with 2 additions and 2 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue