From 03c233cf017a7322697f9f763d5c44dfdb059e9f Mon Sep 17 00:00:00 2001 From: Muayyad Alsadi Date: Tue, 6 Feb 2024 00:22:12 +0300 Subject: [PATCH] remove recursion --- podman_compose.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podman_compose.py b/podman_compose.py index bc61f115..f39ab9af 100755 --- a/podman_compose.py +++ b/podman_compose.py @@ -3243,7 +3243,7 @@ async def async_main(): await podman_compose.run() def main(): - asyncio.run(main()) + asyncio.run(async_main()) if __name__ == "__main__": main()