Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 27, 2025
1 parent 3e34f5e commit b57fc70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/trove_setup/guide.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ def run_guided() -> list[str]:
)
parsed_min_python_version = Version(min_python_version)
parsed_max_python_version = Version(max_python_version)
assert (
parsed_min_python_version <= parsed_max_python_version
), "You min python version cannot be higher than your max python version"
assert parsed_min_python_version <= parsed_max_python_version, (
"You min python version cannot be higher than your max python version"
)
for version, classifier in python_versions.items():
if (
version >= parsed_min_python_version
Expand Down

0 comments on commit b57fc70

Please sign in to comment.