You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upon Isort-ing the following buffer, a new line will be added near the EOF.
Before:
1importos2importsys34deffoo(a):
5pass
After (see Line 7, a new blank line is added):
1importos2importsys345deffoo(a):
6pass7
Running isort from command-line doesn't have such issues: it correctly organizes import statements, but does not add any blank lines at the end of the file. I think updating the neovim buffer contents with isort output did not handle EOF properly.
I was using neovim 0.5.1 and isort 4.3.21.
The text was updated successfully, but these errors were encountered:
Upon
Isort
-ing the following buffer, a new line will be added near the EOF.Before:
After (see Line 7, a new blank line is added):
Running
isort
from command-line doesn't have such issues: it correctly organizes import statements, but does not add any blank lines at the end of the file. I think updating the neovim buffer contents with isort output did not handle EOF properly.I was using neovim 0.5.1 and isort 4.3.21.
The text was updated successfully, but these errors were encountered: