From fedb6011632cf32f45d688c7c47de1cfa7d7c71d Mon Sep 17 00:00:00 2001 From: Bas Zoetekouw Date: Thu, 7 Mar 2024 15:18:00 +0100 Subject: [PATCH] remove debugging Signed-off-by: Bas Zoetekouw --- podman_compose.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/podman_compose.py b/podman_compose.py index 911c81c9..1863056e 100755 --- a/podman_compose.py +++ b/podman_compose.py @@ -863,19 +863,9 @@ def get_net_args(compose, cnt): net_names.append(net_name) net_names_str = ",".join(net_names) - import pprint - - pprint.pprint(cnt) - multiple_nets = cnt.get("networks", None) - print("mutiple_nets: ") - pprint.pprint(multiple_nets) - print("net_names_str: ") - pprint.pprint(net_names_str) - if multiple_nets and len(multiple_nets)>1: for net_, net_config_ in multiple_nets.items(): - print(f"procesiing {net_}, {net_config_}") if net_config_ is None: net_config_ = {}