isort causes odd fixing with import line which contains line berak and tab indentation.
before isort (Notice that this code uses Tab indentation, not spaces.)
from sys \
import version
print(version)
after isort
from sys import importversion
print(version)
expected
from sys import version
print(version)
Versions
- macOS Big Sur 11.2.3
- Python 3.9.4
- isort 5.7.0
isortcauses odd fixing with import line which contains line berak and tab indentation.before
isort(Notice that this code uses Tab indentation, not spaces.)after
isortexpected
Versions