From 1eb166445b32adb1cabe8e10672a232ca3ed0655 Mon Sep 17 00:00:00 2001 From: BugFest Date: Mon, 10 Apr 2023 17:29:50 +0200 Subject: [PATCH] Linting fixes Signed-off-by: BugFest --- podman_compose.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/podman_compose.py b/podman_compose.py index 24221b2..bafe828 100755 --- a/podman_compose.py +++ b/podman_compose.py @@ -2094,7 +2094,6 @@ def build_one(compose, args, cnt): @cmd_run(podman_compose, "build", "build stack images") def compose_build(compose, args): - # keeps the status of the last service/container built status = 0 @@ -2116,7 +2115,7 @@ def compose_build(compose, args): status = parse_return_code(p, status) # When calling the "build" command, exit with the last non-Ok exit code found - if args.command == "build" or status !=0: + if args.command == "build" or status != 0: sys.exit(status)