Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Serious-senpai committed Sep 15, 2024
1 parent 73c8501 commit ac11639
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[pycodestyle]
exclude = extern
max-line-length = 9999
statistics = True

[coverage:run]
concurrency = multiprocessing, thread
omit = scripts/*

[coverage:report]
exclude_also =
if TYPE_CHECKING:
def __repr__
raise NotImplementedError
return NotImplemented

[flake8]
extend-ignore = E501
exclude =
.git
.venv
__pycache__
__init__.py
extern

[mypy]
exclude = extern

0 comments on commit ac11639

Please sign in to comment.