Update app.py
Browse files
app.py
CHANGED
@@ -594,6 +594,6 @@ async def main():
|
|
594 |
# Start the bot
|
595 |
await application.run_polling()
|
596 |
|
597 |
-
|
598 |
if __name__ == "__main__":
|
599 |
-
asyncio.
|
|
|
|
594 |
# Start the bot
|
595 |
await application.run_polling()
|
596 |
|
|
|
597 |
if __name__ == "__main__":
|
598 |
+
loop = asyncio.get_event_loop()
|
599 |
+
loop.run_until_complete(main())
|