diff options
author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-10-04 13:58:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-04 13:58:37 +0200 |
commit | 816fcde5e8f0a1d8a5e0beadf294dc963aa5863f (patch) | |
tree | 42c527a2ac66c5893dcff0d14dc6dfb9d348680b /doc | |
parent | 86c073e49fc099d8111da96cfbb2f30ccd659338 (diff) | |
download | pylint-git-816fcde5e8f0a1d8a5e0beadf294dc963aa5863f.tar.gz |
Improve and flatten ``unused-wildcard-import`` message (#5110)
* Improve and flatten ``unused-wildcard-import`` message
Instead of reporting all unused imports, the checker now emits one
single message for all unused imports with a stylized string containing
all imports.
This closes #3859
* Add tests for string formation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/whatsnew/2.12.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/whatsnew/2.12.rst b/doc/whatsnew/2.12.rst index 6a611eeb3..9bb00708e 100644 --- a/doc/whatsnew/2.12.rst +++ b/doc/whatsnew/2.12.rst @@ -23,3 +23,7 @@ Extensions Other Changes ============= + +* Improve and flatten ``unused-wildcard-import`` message + + Closes #3859 |