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
Hola, I have an import from the following format:
from aaaaaaa import bbbbbbbbbbbbbbbbb, ccccccccccccccccccc, dddddddddddddddd # noqa: E402 from aaaaaaa import eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, fffffffffffffffffffff # noqa: E402
When running isort . -m HANGING_INDENT -l 120 --check-only --combine-as --df it prints:
isort . -m HANGING_INDENT -l 120 --check-only --combine-as --df
-from aaaaaaa import bbbbbbbbbbbbbbbbb, ccccccccccccccccccc, dddddddddddddddd # noqa: E402 -from aaaaaaa import eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, fffffffffffffffffffff # noqa: E402 +from aaaaaaa import bbbbbbbbbbbbbbbbb, ccccccccccccccccccc, dddddddddddddddd, eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, \ + fffffffffffffffffffff # noqa: E402
Running isort . -m HANGING_INDENT -l 120 --check-only --combine-as --df again, it prints:
-from aaaaaaa import bbbbbbbbbbbbbbbbb, ccccccccccccccccccc, dddddddddddddddd, eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, \ - fffffffffffffffffffff # noqa: E402 +from aaaaaaa import fffffffffffffffffffff # noqa: E402 +from aaaaaaa import bbbbbbbbbbbbbbbbb, ccccccccccccccccccc, dddddddddddddddd, eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
Besides of the strange behavior that yields two different formattings, the second one missing the noqa.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hola,
I have an import from the following format:
When running
isort . -m HANGING_INDENT -l 120 --check-only --combine-as --df
it prints:Running
isort . -m HANGING_INDENT -l 120 --check-only --combine-as --df
again, it prints:Besides of the strange behavior that yields two different formattings, the second one missing the noqa.
The text was updated successfully, but these errors were encountered: