Skip to content

Commit

Permalink
🧪 Suppress wrong-import-position in pylint
Browse files Browse the repository at this point in the history
It's isort-handled, and pylint does not know all the context.
  • Loading branch information
webknjaz committed Oct 9, 2024
1 parent d5ec549 commit 0b3155e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .pylintrc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,7 @@ disable = [
"ungrouped-imports", # isort-handled: https://github.com/pylint-dev/pylint/issues/9977
"useless-import-alias", # MyPy requires the opposite
"wrong-import-order", # isort-handled: https://github.com/pylint-dev/pylint/issues/9977
"wrong-import-position", # isort-handled: https://github.com/pylint-dev/pylint/issues/9977
]

# Enable the message, report, category or checker with the given id(s). You can
Expand Down

0 comments on commit 0b3155e

Please sign in to comment.