Skip to content

Commit bae7613

Browse files
fix: linting errors
1 parent 7876600 commit bae7613

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ python_classes = ["Test*"]
6767
python_functions = ["test_*"]
6868

6969
[tool.mypy]
70-
python_version = "1.0.1"
70+
python_version = "3.10"
7171
strict = true
7272
warn_return_any = true
7373
warn_unused_configs = true
7474

7575
[tool.ruff]
76-
target-version = "1.0.1"
76+
target-version = "py310"
7777
line-length = 100
7878

7979
[tool.ruff.lint]

src/archunitpython/files/assertion/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
gather_custom_file_violations,
66
)
77
from archunitpython.files.assertion.cycle_free import ViolatingCycle, gather_cycle_violations
8-
from archunitpython.files.assertion.depend_on_files import (
9-
ViolatingFileDependency,
10-
gather_depend_on_file_violations,
11-
)
128
from archunitpython.files.assertion.depend_on_external_modules import (
139
ViolatingExternalModuleDependency,
1410
gather_depend_on_external_module_violations,
1511
)
12+
from archunitpython.files.assertion.depend_on_files import (
13+
ViolatingFileDependency,
14+
gather_depend_on_file_violations,
15+
)
1616
from archunitpython.files.assertion.matching_files import (
1717
ViolatingNode,
1818
gather_regex_matching_violations,

0 commit comments

Comments
 (0)