Skip to content

Commit

Permalink
lint: Disable too-many-ancestors pylint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Wuestengecko committed Feb 5, 2021
1 parent b75b9f3 commit 852fe62
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,10 @@ variable-rgx = '[a-z][a-z0-9_]+'
expected-line-ending-format = "LF"

[tool.pylint.messages_control]
disable = "no-else-return"
enable = "c-extension-no-member"
disable = [
"too-many-ancestors",
"no-else-return",
]
enable = [
"c-extension-no-member",
]

0 comments on commit 852fe62

Please sign in to comment.