Skip to content

Commit

Permalink
Refactor variable names in latest_tag.py
Browse files Browse the repository at this point in the history
  • Loading branch information
emcek committed May 18, 2024
1 parent d7e943e commit 5c2f91e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions latest_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ def latest_version(repo_path: str, as_tag: int = 1) -> str:


if __name__ == '__main__':
repopath, astag = argv[1:]
print(latest_version(repopath, int(astag)))
_repo_path, _as_tag = argv[1:]
print(latest_version(_repo_path, int(_as_tag)))

0 comments on commit 5c2f91e

Please sign in to comment.