Migrate to python 3.12

This commit is contained in:
2025-04-22 01:51:36 +02:00
parent 586359f8ce
commit 1c5b7e81e8
4 changed files with 193 additions and 13 deletions

View File

@@ -1,6 +1,4 @@
from asyncio import run, set_event_loop_policy
import uvloop
from asyncio import run
from core.temporal import get_client
@@ -55,7 +53,4 @@ async def main():
await worker.run()
set_event_loop_policy(uvloop.EventLoopPolicy())
run(main())