From 02166f584af8eda05401cf0f10bffb1ac3dcc008 Mon Sep 17 00:00:00 2001 From: Povilas Kanapickas Date: Mon, 19 May 2025 18:28:16 +0300 Subject: [PATCH] Use more standard call to list.append Signed-off-by: Povilas Kanapickas --- podman_compose.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podman_compose.py b/podman_compose.py index 9314e19..c50d10c 100755 --- a/podman_compose.py +++ b/podman_compose.py @@ -2674,7 +2674,7 @@ def container_to_build_args(compose, cnt, args, path_exists, cleanup_callbacks=N os.remove(dockerfile) if cleanup_callbacks is not None: - list.append(cleanup_callbacks, cleanup_temp_dockfile) + cleanup_callbacks.append(cleanup_temp_dockfile) build_args = []