Commit a2e49fd1 authored by Szilárd Pfeiffer's avatar Szilárd Pfeiffer
Browse files

tox: Disable useless super-with-arguments (R1725) warning

It generates useless warning in case of a Python 2 compatible codebase.
parent 26788fdb
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ commands =
max-line-length = 120

[pylint]
disable = missing-docstring,too-few-public-methods,too-many-ancestors,useless-object-inheritance,duplicate-code
disable = missing-docstring,too-few-public-methods,too-many-ancestors,useless-object-inheritance,duplicate-code,super-with-arguments
class-attribute-rgx = ([A-Za-z_][A-Za-z0-9_]{2,50}|(__.*__))$
method-rgx = [a-z_][a-z0-9_]{2,50}$
variable-rgx = [a-z_][a-z0-9_]{2,50}$