Skip to content

Commit b349237

Browse files
committed
Disable duplicate-code in pylint test
This error is nice but it can't be disabled and it really doesn't work for examples or tests... See pylint-dev/pylint#214 for more details.
1 parent a04fa75 commit b349237

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
@@ -60,7 +60,8 @@ confidence=
6060
# --enable=similarities". If you want to run only the classes checker, but have
6161
# no Warning level messages displayed, use "--disable=all --enable=classes
6262
# --disable=W".
63-
disable=fixme,
63+
disable=duplicate-code,
64+
fixme,
6465
invalid-name,
6566
missing-docstring,
6667
no-self-use,

0 commit comments

Comments
 (0)