Commit 78098b11 authored by Stefan Behnel's avatar Stefan Behnel

disable some pylint warnings

parent dc3348d9
......@@ -33,7 +33,11 @@ load-plugins=
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
disable=E1101,C0111
## R0201: Method could be a function
## R0904: Too many public methods
## W0201: Attribute defined outside __init__()
## W0141: Used builtin function 'map'
disable=E1101,C0111,R0201,R0904,W0201,W0141
[REPORTS]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment