Disable a few more unneeded pylint alarms

This commit is contained in:
Calen Pennington
2013-03-13 14:33:58 -04:00
parent a1c375b499
commit 1d1a2c8d62

View File

@@ -36,8 +36,10 @@ load-plugins=
disable=
# W0141: Used builtin function 'map'
# W0142: Used * or ** magic
# R0901: Too many ancestors
# R0903: Too few public methods (1/2)
W0141,W0142,R0903
# R0904: Too many public methods
W0141,W0142,R0901,R0903,R0904
[REPORTS]