cli: fix asyncio runner bug for 3.10 (#860)

This commit is contained in:
Vadym Barda
2024-06-27 15:01:47 -04:00
committed by GitHub
parent 294426de62
commit cd670d9d59
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ def Runner():
pass
def run(self, coro):
asyncio.run(coro)
return asyncio.run(coro)
yield _Runner()