Skip to content

Commit

Permalink
Linting indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
almahmoud committed Jul 8, 2024
1 parent d387970 commit 8274d7d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/galaxy/jobs/runners/kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,10 +532,8 @@ def __get_k8s_ingress_spec(self, ajs):
]
else:
k8s_spec_template["spec"]["tls"] = [
{
"hosts": [domain],
"secretName": re.sub("[^a-z0-9-]", "-", domain)
} for domain in domains
{"hosts": [domain],
"secretName": re.sub("[^a-z0-9-]", "-", domain)} for domain in domains
]
if self.runner_params.get("k8s_interactivetools_ingress_annotations"):
new_ann = yaml.safe_load(self.runner_params.get("k8s_interactivetools_ingress_annotations"))
Expand Down

0 comments on commit 8274d7d

Please sign in to comment.