From 01f4df2636a266546f70abc8c4d9275cc3e305b3 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Thu, 4 Jul 2024 13:37:55 -0600 Subject: [PATCH] Fix lint error --- .../deploy/webapp/deploy_webapp_from_registry.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stack_orchestrator/deploy/webapp/deploy_webapp_from_registry.py b/stack_orchestrator/deploy/webapp/deploy_webapp_from_registry.py index 867b9356..130670b8 100644 --- a/stack_orchestrator/deploy/webapp/deploy_webapp_from_registry.py +++ b/stack_orchestrator/deploy/webapp/deploy_webapp_from_registry.py @@ -122,7 +122,10 @@ def process_app_deployment_request( shared_tag_exists = remote_image_exists(image_registry, app_image_shared_tag) if shared_tag_exists and not force_rebuild: # simply add our unique tag to the existing image and we are done - logger.log(f"Existing image found for this app: {app_image_shared_tag} tagging it with: {deployment_container_tag} to use in this deployment") + logger.log( + f"Existing image found for this app: {app_image_shared_tag} " + "tagging it with: {deployment_container_tag} to use in this deployment" + ) add_tags_to_image(image_registry, app_image_shared_tag, deployment_container_tag) logger.log("Tag complete") else: