Skip to content

Commit

Permalink
fix: ignore duplicate code in pylint
Browse files Browse the repository at this point in the history
- After updating, pylint returned errors for duplicate code on tests, so
  marking the flag as ignored resolves the issue
  • Loading branch information
tharropoulos committed Aug 23, 2024
1 parent bc3be32 commit e3a2103
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 @@ -485,7 +485,8 @@ disable=arguments-differ,
use-implicit-booleaness-not-len,
use-symbolic-message-instead,
wrong-import-order,
wrong-import-position
wrong-import-position,
duplicate-code

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

0 comments on commit e3a2103

Please sign in to comment.