Skip to content

Commit

Permalink
remove redundant default value
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros-k committed Aug 30, 2024
1 parent 4496580 commit 8d9f74a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps_ci/images_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def is_main_dep(app_dir: Path, dep_name: str) -> bool:
verrors.check()
with open(ix_values, 'r') as f:
ix_values_data = yaml.safe_load(f.read())
if ix_values_data.get('images', {}).get('image', {}).get('repository', '') == dep_name:
if ix_values_data.get('images', {}).get('image', {}).get('repository') == dep_name:
return True

return False

0 comments on commit 8d9f74a

Please sign in to comment.