Skip to content
Snippets Groups Projects
Commit ab7c52a9 authored by cdce8p's avatar cdce8p Committed by Paulus Schoutsen
Browse files

Add unnecessary-pass for pylint-update (#18985)

parent d6a4e106
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
# abstract-method - with intro of async there are always methods missing # abstract-method - with intro of async there are always methods missing
# inconsistent-return-statements - doesn't handle raise # inconsistent-return-statements - doesn't handle raise
# not-an-iterable - https://github.com/PyCQA/pylint/issues/2311 # not-an-iterable - https://github.com/PyCQA/pylint/issues/2311
# unnecessary-pass - readability for functions which only contain pass
disable= disable=
abstract-class-little-used, abstract-class-little-used,
abstract-method, abstract-method,
...@@ -32,6 +33,7 @@ disable= ...@@ -32,6 +33,7 @@ disable=
too-many-public-methods, too-many-public-methods,
too-many-return-statements, too-many-return-statements,
too-many-statements, too-many-statements,
unnecessary-pass,
unused-argument unused-argument
[REPORTS] [REPORTS]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment