From dcae063e11514994846eea2a793ad6ffbbfe1588 Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Fri, 2 Feb 2024 14:50:53 -0600 Subject: [PATCH] lint --- .../deploy/webapp/deploy_webapp_from_registry.py | 3 +-- stack_orchestrator/deploy/webapp/run_webapp.py | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stack_orchestrator/deploy/webapp/deploy_webapp_from_registry.py b/stack_orchestrator/deploy/webapp/deploy_webapp_from_registry.py index 5cb9e330..9108f2e3 100644 --- a/stack_orchestrator/deploy/webapp/deploy_webapp_from_registry.py +++ b/stack_orchestrator/deploy/webapp/deploy_webapp_from_registry.py @@ -23,8 +23,7 @@ import tempfile import click from stack_orchestrator.deploy.webapp import deploy_webapp -from stack_orchestrator.deploy.webapp.util import (LaconicRegistryClient, determine_base_container, - build_container_image, push_container_image, +from stack_orchestrator.deploy.webapp.util import (LaconicRegistryClient, build_container_image, push_container_image, file_hash, deploy_to_k8s, publish_deployment, hostname_for_deployment_request, generate_hostname_for_app, match_owner) diff --git a/stack_orchestrator/deploy/webapp/run_webapp.py b/stack_orchestrator/deploy/webapp/run_webapp.py index 324e37b4..f780c6f8 100644 --- a/stack_orchestrator/deploy/webapp/run_webapp.py +++ b/stack_orchestrator/deploy/webapp/run_webapp.py @@ -29,6 +29,7 @@ from stack_orchestrator.deploy.deployer_factory import getDeployer WEBAPP_PORT = 80 + @click.command() @click.option("--image", help="image to deploy", required=True) @click.option("--env-file", help="environment file for webapp")