From f512566759a8a9c65dc9b0f21d46a6dd0c20e588 Mon Sep 17 00:00:00 2001 From: Robin Syl Date: Mon, 11 Mar 2024 23:49:44 +0100 Subject: [PATCH] run formatter Signed-off-by: Robin Syl --- podman_compose.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) mode change 100755 => 100644 podman_compose.py diff --git a/podman_compose.py b/podman_compose.py old mode 100755 new mode 100644 index b7bd3ca8..9f597bcc --- a/podman_compose.py +++ b/podman_compose.py @@ -1020,9 +1020,7 @@ async def container_to_args(compose, cnt, detached=True): # If it's a string, it's equivalent to specifying CMD-SHELL if is_str(healthcheck_test): # podman does not add shell to handle command with whitespace - podman_args.extend( - ["--health-cmd", "/bin/sh -c " + cmd_quote(healthcheck_test)] - ) + podman_args.extend(["--health-cmd", "/bin/sh -c " + cmd_quote(healthcheck_test)]) elif is_list(healthcheck_test): healthcheck_test = healthcheck_test.copy() # If it's a list, first item is either NONE, CMD or CMD-SHELL.