From 1b1d0181c7c1eb1fdfa3991f4f2e0561ac382194 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Fri, 21 Nov 2025 21:15:51 -0500 Subject: [PATCH] fix weird formatting in actions --- scripts/deploy_containers.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/deploy_containers.py b/scripts/deploy_containers.py index cd8f334..4ad917d 100644 --- a/scripts/deploy_containers.py +++ b/scripts/deploy_containers.py @@ -76,7 +76,6 @@ def main(): deployed = [] failed = [] - print("\n") for task in new_diff: deployment = deploy(tag=task) @@ -84,9 +83,7 @@ def main(): failed.append(task) else: deployed.append(task) - print("\n") - print("\n") for task in removed_containers: print(f"[MAIN] Attempting to remove containers related to '{task}'...") task_name = task.split("/")[1].split(".")[0] @@ -102,7 +99,6 @@ def main(): subprocess.run(f"/usr/bin/docker container rm {docker_container_id}", shell=True, stdout=subprocess.DEVNULL) subprocess.run("/usr/bin/docker image prune -f", shell=True, stdout=subprocess.DEVNULL) subprocess.run("/usr/bin/docker container prune -f", shell=True, stdout=subprocess.DEVNULL) - print("\n") if len(failed) <= 0 and len(deployed) > 0: print("\n---------------------")