Fix manual shipping options (#189)

Co-authored-by: Sebastian Thomschke <sebthom@users.noreply.github.com>
This commit is contained in:
DreckSoft
2023-06-02 12:01:06 +02:00
committed by GitHub
parent 95331fe9b6
commit 7762049567
2 changed files with 12 additions and 8 deletions

View File

@@ -173,7 +173,7 @@ max-attributes = 15 # maximum number of instance attributes for a class (R0902)
max-branches = 30 # maximum number of branch for function / method body (R0912)
max-locals = 30 # maximum number of local variables for function / method body (R0914)
max-returns = 10 # maximum number of return / yield for function / method body (R0911)
max-statements = 80 # maximum number of statements in function / method body (R0915)
max-statements = 100 # maximum number of statements in function / method body (R0915)
max-public-methods = 30 # maximum number of public methods for a class (R0904)
@@ -186,4 +186,4 @@ max-public-methods = 30 # maximum number of public methods for a class (R0904)
addopts = "--strict-markers -p no:cacheprovider --doctest-modules --ignore=__pypackages__ --ignore=kleinanzeigen_bot/__main__.py"
markers = [
"itest: marks a test as an integration test (i.e. a test with external dependencies)"
]
]