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
I'm seeing an issue with 5.6.0 that I wasn't seeing with 5.5.3.
5.6.0
5.5.3
Before running isort:
isort
from tools.dependency_pruning.prune_dependencies import ( # isort:skip prune_dependencies, )
After running isort:
Config:
[isort] profile = black float_to_top = True
If I remove float_to_top = True from the config, the line doesn't get added anymore.
float_to_top = True
Thanks!
The text was updated successfully, but these errors were encountered:
245471d
Merge pull request #1551 from PyCQA/issue/1548/empty-line-added-after…
7ce50a9
…-import-skip Fixed #1548: On rare occasions an unecessary empty line can be added …
Thanks for reporting! This has been fixed in isort 5.6.2
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I'm seeing an issue with
5.6.0
that I wasn't seeing with5.5.3
.Before running
isort
:After running
isort
:Config:
If I remove
float_to_top = True
from the config, the line doesn't get added anymore.Thanks!
The text was updated successfully, but these errors were encountered: