Skip to content

Commit

Permalink
Merge pull request #6663 from janezd/lint-disable-duplicated-code
Browse files Browse the repository at this point in the history
Lint: Disable duplicate-code
  • Loading branch information
janezd committed Dec 2, 2023
2 parents ab868dc + 7a3548c commit b932914
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ disable=
no-name-in-module, no-member, # too many false positives from Qt
import-error, # false positives, and we don't expect any true positives
too-many-ancestors, # I don't think this is a problem
no-else-return # else's may actually improve readability
no-else-return, # else's may actually improve readability
duplicate-code # too strict; we're disciplined and don't do this by mistake


[REPORTS]
Expand Down

0 comments on commit b932914

Please sign in to comment.