Skip to content

Commit

Permalink
chore: Fix publish pipeline - II (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
navasvarela authored Nov 6, 2024
1 parent 03d0631 commit 1d1d013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/version_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_public_version(project_name: str, is_test=False) -> Version:

if __name__ == "__main__":
pyproject_toml_path = sys.argv[1]
test_regex = sys.argv[2]
test_regex = sys.argv[2] if len(sys.argv) > 2 else None
with open(pyproject_toml_path, "rb") as f:
project = tomli.load(f)

Expand Down

0 comments on commit 1d1d013

Please sign in to comment.