mirror of https://github.com/Chizi123/Arch-autobuild-repo.git

Joel Grunbaum
2 days ago 275460da89e74ac70ce127215753a44e40f17f1a
src/archbuild/cli.py
@@ -22,7 +22,7 @@
def run_async(coro: Any) -> Any:
    """Run async function in sync context."""
    return asyncio.get_event_loop().run_until_complete(coro)
    return asyncio.run(coro)
class Context: