Skip to content

Commit

Permalink
Fix quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
smokestacklightnin committed Nov 20, 2024
1 parent 38e5a48 commit 239c419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/_nebari/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ def _version_specific_upgrade(
argo_sa = ["argo-admin", "argo-dev", "argo-view"]

if kwargs.get("attempt_fixes", False):
...
pass
else:
kubectl_delete_argo_crds_cmd = " ".join(
(
Expand All @@ -675,7 +675,7 @@ def _version_specific_upgrade(
(
*(
"kubectl delete sa",
f"-n {config.get("namespace", "default")}",
f"-n {config.get('namespace', 'default')}",
),
*argo_sa,
),
Expand Down

0 comments on commit 239c419

Please sign in to comment.