-
-
Notifications
You must be signed in to change notification settings - Fork 582
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
isort copies comments across imports #2282
Comments
This is particularly problematic with |
You could use a temporary workaround by enabling the
if that works for you? |
The problem seems to be that
whose output shows that for nested comments there's no duplication:
|
I used this workaround from foo import a # comment
from foo import b # comment
from foo import c as d
from foo import e |
Given this file,
the result of isort is
The text was updated successfully, but these errors were encountered: