File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 11[build-system ]
22requires = [" setuptools" , " setuptools-rust" ]
33build-backend = " setuptools.build_meta"
4+
5+ [tool .isort ]
6+ # isort is a common python tool for keeping imports nicely formatted.
7+ # Automatically keep imports alphabetically sorted, on single lines in
8+ # PEP recommended sections (https://peps.python.org/pep-0008/#imports)
9+ # files or individual lines can be ignored via `# isort:skip|# isort:skip_file`.
10+ profile = " black"
11+ py_version =38
12+ force_single_line = true
Original file line number Diff line number Diff line change @@ -25,17 +25,6 @@ deps =
2525 trio-typing ==0.7.0
2626commands = mypy --install-types {posargs}
2727
28-
29- [isort]
30- ; isort is a common python tool for keeping imports nicely formatted.
31- ; Automatically keep imports alphabetically sorted, on single lines in
32- ; PEP recommended sections (https://peps.python.org/pep-0008/#imports)
33- ; files or individual lines can be ignored via `# isort:skip|# isort:skip_file`.
34- profile = black
35- py_version =38
36- force_single_line = True
37-
38-
3928[testenv:linting-ci]
4029; checks linting for CI with stricter exiting when failing.
4130skip_install = true
You can’t perform that action at this time.
0 commit comments