We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Consider:
from very_long_module_name import SuperLongClassName #@UnusedImport -- long string of comments which wrap over
Running isort on it using -m4 and forcing the use of parentheses renders this incorrect code:
isort
-m4
from very_long_module_name import ( SuperLongClassName # @UnusedImport -- long string of comments which wrap over))))
(Note that isort added the ) after the comment, which generated an syntactically invalid file).
)
The text was updated successfully, but these errors were encountered:
Thanks for reporting this major issue! I've resolved this issue in the development branch and prepared it for the next release.
Thanks!
~Timothy
Sorry, something went wrong.
Thanks! 🙇
No branches or pull requests
Consider:
Running
isort
on it using-m4
and forcing the use of parentheses renders this incorrect code:(Note that
isort
added the)
after the comment, which generated an syntactically invalid file).The text was updated successfully, but these errors were encountered: