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
Running isort --diff with the following will add a blank line at the start:
isort --diff
# comment import os # comment2 import sys
@@ -1,4 +1,5 @@ + +import os # comment -import os # comment2 import sys
The result then looks like this:
import os # comment # comment2 import sys
The text was updated successfully, but these errors were encountered:
Fix issue #889: Isort should not add blank lines to beginning of file
855806f
Merge pull request #893 from timothycrosley/feature/fix-issue-889
28e1f7d
e1f83dd
Thank you for reporting this! Should be fixed in the latest release (4.3.13) of isort.
Thanks!
~Timothy
Sorry, something went wrong.
Awesome, thanks! Confirmed to be fixed with 855806f.
No branches or pull requests
Running
isort --diff
with the following will add a blank line at the start:The result then looks like this:
The text was updated successfully, but these errors were encountered: