Skip to content

Commit

Permalink
Remove unnecessary default value
Browse files Browse the repository at this point in the history
  • Loading branch information
smokestacklightnin committed Nov 18, 2024
1 parent d98c67d commit 3fa3962
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/_nebari/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,10 +308,7 @@ def replace_image_tag_legacy(
return None

def replace_image_tag(
s: str,
new_version: str,
config_path: str,
attempt_fixes: bool = kwargs.get("attempt_fixes", False),
s: str, new_version: str, config_path: str, attempt_fixes: bool
) -> str:
"""
Replace the image tag with the new version.
Expand Down Expand Up @@ -373,7 +370,7 @@ def update_image_tag(
config_path: str,
current_image: str,
new_version: str,
attempt_fixes: bool = kwargs.get("attempt_fixes", False),
attempt_fixes: bool,
) -> dict:
"""
Update the image tag in the configuration.
Expand Down

0 comments on commit 3fa3962

Please sign in to comment.