Skip to content

Commit

Permalink
Fix issue #831
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Plessinger <[email protected]>
  • Loading branch information
Ben Plessinger authored and muayyad-alsadi committed Feb 5, 2024
1 parent c5be5ba commit 9ac3339
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions podman_compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -3239,9 +3239,11 @@ def compose_format_parse(parser):
help="Pretty-print container statistics to JSON or using a Go template",
)

async def main():
async def async_main():
await podman_compose.run()

def main():
asyncio.run(main())

if __name__ == "__main__":
asyncio.run(main())
main()

0 comments on commit 9ac3339

Please sign in to comment.