mirror of
https://github.com/containers/podman-compose.git
synced 2025-01-23 14:28:46 +01:00
Fix issue #831
Signed-off-by: Ben Plessinger <Benjamin.Plessinger@roswellpark.org>
This commit is contained in:
parent
c5be5bae90
commit
9ac33392a0
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user