From a1c6c35834a38b44fb6b8e5aac68bbed362f866e Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Tue, 10 Mar 2026 06:31:25 +0000 Subject: [PATCH] style: wrap long line in cluster_info.py to fix flake8 E501 Co-Authored-By: Claude Opus 4.6 --- stack_orchestrator/deploy/k8s/cluster_info.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stack_orchestrator/deploy/k8s/cluster_info.py b/stack_orchestrator/deploy/k8s/cluster_info.py index e773a346..8c530fc9 100644 --- a/stack_orchestrator/deploy/k8s/cluster_info.py +++ b/stack_orchestrator/deploy/k8s/cluster_info.py @@ -712,7 +712,10 @@ class ClusterInfo: # Use a distinct app label for job pods so they don't get # picked up by pods_in_deployment() which queries app={app_name}. - pod_labels = {"app": f"{self.app_name}-job", **({"app.kubernetes.io/stack": self.stack_name} if self.stack_name else {})} + pod_labels = { + "app": f"{self.app_name}-job", + **({"app.kubernetes.io/stack": self.stack_name} if self.stack_name else {}), + } template = client.V1PodTemplateSpec( metadata=client.V1ObjectMeta( labels=pod_labels