Skip to content

Commit

Permalink
Fix pylama breakage (#836)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Feb 17, 2023
1 parent 44103f2 commit da15cce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ universal=1
# E731: do not assign a lambda expression, use a def
# D10?: missing docstrings
[pylama]
linters = mccabe,pep8,pyflakes
ignore = D203,C901
linters = mccabe,pycodestyle,pyflakes
ignore = D203,C901,W503
skip = .tox/*,.venv/*,nornir/_vendor/*

[pylama:pep8]
[pylama:pycodestyle]
max_line_length = 100

[pycodestyle]
ignore = D203,C901
ignore = D203,C901,W503
exclude = .git,__pycache__,build,dist
max-complexity = 10
max-line-length = 100
Expand Down

0 comments on commit da15cce

Please sign in to comment.