Skip to content

Commit b615791

Browse files
committed
Added E0611 to .pylintrc after pylint update is causing it to wrongfully spam that error code.
1 parent 6beaadf commit b615791

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: .pylintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[MESSAGES CONTROL]
22
# Definitions of codes disabled
33
# C0330 - Wrong %s indentation
4+
# E0611 - No name %r in module %r
45
# E1101 - %s %r has no %r member
56
# F0401 - Unable to import %s
67
# R0902 - Too many instance attributes
@@ -20,4 +21,4 @@
2021
# W0232 - Class has no __init__ method
2122
# W0702 - No exception type(s) specified
2223

23-
disable=C0330, E1101, F0401, R0902, R0903, R0904, R0911, R0912, R0913, R0914, R0915, R0921, W0141, W0142, W0201, W0212, W0231, W0232, W0702
24+
disable=C0330, E0611, E1101, F0401, R0902, R0903, R0904, R0911, R0912, R0913, R0914, R0915, R0921, W0141, W0142, W0201, W0212, W0231, W0232, W0702

0 commit comments

Comments
 (0)