From f91329eef095b6bdc0ebc201a5bb61f4a804bd3d Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Mon, 4 Mar 2024 23:41:31 -0600 Subject: [PATCH] lint --- stack_orchestrator/deploy/k8s/deploy_k8s.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stack_orchestrator/deploy/k8s/deploy_k8s.py b/stack_orchestrator/deploy/k8s/deploy_k8s.py index 28abf1f6..39ecdf2e 100644 --- a/stack_orchestrator/deploy/k8s/deploy_k8s.py +++ b/stack_orchestrator/deploy/k8s/deploy_k8s.py @@ -353,7 +353,8 @@ class K8sDeployer(Deployer): hostname = ingress.spec.rules[0].host tls_hosts = ingress.spec.rules[0].host ip = ingress.status.load_balancer.ingress[0].ip - tls = "notBefore: %s, notAfter: %s, names: %s" % (cert["status"]["notBefore"], cert["status"]["notAfter"], ", ".join(ingress.spec.tls[0].hosts)) + tls = "notBefore: %s, notAfter: %s, names: %s" % ( + cert["status"]["notBefore"], cert["status"]["notAfter"], ", ".join(ingress.spec.tls[0].hosts)) except: # noqa: E722 pass