Skip to content

Commit 2f335ee

Browse files
committed
Lint
1 parent 30cc8b8 commit 2f335ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

repo_helper/configuration/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,13 +150,13 @@
150150
from repo_helper.configuration.testing import (
151151
enable_devmode,
152152
enable_tests,
153+
extra_lint_paths,
154+
extra_testenv_commands,
153155
github_ci_requirements,
154156
min_coverage,
155157
mypy_deps,
156158
mypy_plugins,
157159
mypy_version,
158-
extra_lint_paths,
159-
extra_testenv_commands,
160160
tests_dir,
161161
tox_build_requirements,
162162
tox_requirements,

repo_helper/files/ci_cd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ def make_github_manylinux(repo_path: pathlib.Path, templates: Environment) -> Li
594594
elif "pypy" in version:
595595
continue
596596

597-
major, minor = map(int, version.split(".", 1))
597+
major, minor = map(int, version.split('.', 1))
598598
testenv = f"py{major}{minor}"
599599

600600
if minor < 8:

0 commit comments

Comments
 (0)