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
pyproject.toml
[tool.isort] profile = "black" force_single_line = true
main.py
from some_very_long_filename_to_import_from_that_causes_a_too_long_import_row import ( # noqa: E501 CONSTANT_1, ) from some_very_long_filename_to_import_from_that_causes_a_too_long_import_row import ( # noqa: E501 CONSTANT_2, )
Running isort main.py drops # noqa: E501 on the second import line. Same bug without "black" profile.
isort main.py
# noqa: E501
With isort 5.8.0
The text was updated successfully, but these errors were encountered:
19eb9ac
Thanks for reporting this issue! I'm sorry this affected you! it is now fixed in develop and will be pushed to PyPI in the next release of isort.
Sorry, something went wrong.
No branches or pull requests
pyproject.toml
main.py
Running
isort main.py
drops# noqa: E501
on the second import line. Same bug without "black" profile.With isort 5.8.0
The text was updated successfully, but these errors were encountered: