Skip to content

Commit

Permalink
use single quote when possible
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros-k committed Aug 28, 2024
1 parent d9b3b02 commit 0467693
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps_ci/scripts/bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def update_app_version(app_path: str, bump_type: str) -> None:

verrors.check()

old_version = app_config["version"]
app_config["version"] = bump_version(old_version, bump_type)
old_version = app_config['version']
app_config['version'] = bump_version(old_version, bump_type)
rename_versioned_dir(old_version, app_config['version'], app_dir.parent.name, app_dir)

with open(str(app_metadata_file), 'w') as f:
Expand Down

0 comments on commit 0467693

Please sign in to comment.