linter pacification

This commit is contained in:
Manuel Barkhau 2020-10-15 22:32:56 +00:00
parent 1c21e22720
commit 2c01699b99

View file

@ -27,7 +27,7 @@ length_sort = True
[flake8] [flake8]
max-line-length = 100 max-line-length = 100
max-complexity = 10 max-complexity = 12
ignore = ignore =
# Missing trailing comma (handled by sjfmt) # Missing trailing comma (handled by sjfmt)
C812 C812
@ -136,6 +136,9 @@ max-locals = 20
# Maximum number of arguments for function / method # Maximum number of arguments for function / method
max-args = 12 max-args = 12
# Maximum number of branch for function / method body
max-branches = 14
good-names = logger,i,ex good-names = logger,i,ex
# These are packages that are implemented as c extensions and # These are packages that are implemented as c extensions and