mirror of
https://github.com/containers/podman-compose.git
synced 2025-06-19 19:27:47 +02: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",
|
help="Pretty-print container statistics to JSON or using a Go template",
|
||||||
)
|
)
|
||||||
|
|
||||||
async def main():
|
async def async_main():
|
||||||
await podman_compose.run()
|
await podman_compose.run()
|
||||||
|
|
||||||
|
def main():
|
||||||
|
asyncio.run(main())
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
asyncio.run(main())
|
main()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user