Skip to content

Commit f512566

Browse files
run formatter
Signed-off-by: Robin Syl <[email protected]>
1 parent efccf15 commit f512566

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

podman_compose.py

100755100644
+1-3
Original file line numberDiff line numberDiff line change
@@ -1020,9 +1020,7 @@ async def container_to_args(compose, cnt, detached=True):
10201020
# If it's a string, it's equivalent to specifying CMD-SHELL
10211021
if is_str(healthcheck_test):
10221022
# podman does not add shell to handle command with whitespace
1023-
podman_args.extend(
1024-
["--health-cmd", "/bin/sh -c " + cmd_quote(healthcheck_test)]
1025-
)
1023+
podman_args.extend(["--health-cmd", "/bin/sh -c " + cmd_quote(healthcheck_test)])
10261024
elif is_list(healthcheck_test):
10271025
healthcheck_test = healthcheck_test.copy()
10281026
# If it's a list, first item is either NONE, CMD or CMD-SHELL.

0 commit comments

Comments
 (0)