Skip to content

Commit d849130

Browse files
authored
Disable pylint 2.7.0 duplicate-code warning (#947)
pylint 2.7.0 raises a lot of duplicate-code warnings. This PR disables the duplicate-code check. Fixes #946.
1 parent 8a97e1a commit d849130

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ disable=print-statement,
141141
comprehension-escape,
142142
attribute-defined-outside-init,
143143
bad-continuation,
144-
import-error
144+
import-error,
145+
duplicate-code
145146

146147
# Enable the message, report, category or checker with the given id(s). You can
147148
# either give multiple identifier separated by comma (,) or put this option

0 commit comments

Comments
 (0)