Signed-off-by: Ben Plessinger <Benjamin.Plessinger@roswellpark.org>
This commit is contained in:
Ben Plessinger 2024-02-05 15:24:32 -05:00 committed by Muayyad Alsadi
parent c5be5bae90
commit 9ac33392a0

View File

@ -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()