Skip to content

Commit 44faf11

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent adc7ad0 commit 44faf11

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/trove_setup/guide.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ def run_guided() -> list[str]:
6969
)
7070
parsed_min_python_version = Version(min_python_version)
7171
parsed_max_python_version = Version(max_python_version)
72-
assert (
73-
parsed_min_python_version <= parsed_max_python_version
74-
), "You min python version cannot be higher than your max python version"
72+
assert parsed_min_python_version <= parsed_max_python_version, (
73+
"You min python version cannot be higher than your max python version"
74+
)
7575
for version, classifier in python_versions.items():
7676
if (
7777
version >= parsed_min_python_version

0 commit comments

Comments
 (0)