Add Dockerfile and fix deprecated call

This commit is contained in:
Yashar Dabiran 2025-02-12 01:04:27 -05:00
parent ccb9181ac9
commit e3fcfd34c7
2 changed files with 12 additions and 1 deletions

View file

@ -52,7 +52,8 @@ class BringPlugin:
if __name__ == "__main__":
bring_plugin = BringPlugin()
loop = asyncio.get_event_loop()
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
while True:
try: