Skip to content

Commit 876f9b4

Browse files
committed
Make pre-commit happy
1 parent bd767ff commit 876f9b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deployer/infra_components/cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def deploy_support(self, cert_manager_version, debug, dry_run):
8181
f"Minimum required version of helm is v4. Found version {helm_version}",
8282
file=sys.stderr,
8383
)
84-
print(f"Upgrade your version of helm and try again")
84+
print("Upgrade your version of helm and try again", file=sys.stderr)
8585
sys.exit(1)
8686
cert_manager_url = "https://charts.jetstack.io"
8787

deployer/infra_components/hub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def deploy(self, chart_dir, dask_gateway_version, debug, dry_run):
105105
f"Minimum required version of helm is v4. Found version {helm_version}",
106106
file=sys.stderr,
107107
)
108-
print(f"Upgrade your version of helm and try again")
108+
print("Upgrade your version of helm and try again", file=sys.stderr)
109109
sys.exit(1)
110110
# Support overriding domain configuration in the loaded cluster.yaml via
111111
# a cluster.yaml specified enc-<something>.secret.yaml file that only

0 commit comments

Comments
 (0)