-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve and flatten unused-wildcard-import
message
#5110
Improve and flatten unused-wildcard-import
message
#5110
Conversation
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 pylint-dev#3859
Pull Request Test Coverage Report for Build 1301396544
💛 - Coveralls |
@Pierre-Sassoulas Sorry for adding another commit after your approval. Just thought I should add some tests to actually test the string concatenation I added. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't worry :) Very nice change !
I added this to |
This reverts commit 816fcde.
My bad, I merged prematurely. I will fix this when releasing. |
doc/whatsnew/<current release.rst>
.Type of Changes
Description
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