fix: remove redundant await from async function call in user handler

This commit is contained in:
retoor 2024-12-17 13:47:11 +00:00
parent c16b6e8d18
commit 051f0fbbcc

View File

@ -28,7 +28,7 @@ def bot_task(username, password):
bot.fight()
except Exception as ex:
log.critical(ex, exc_info=True)
await asyncio.sleep(1)
def main():