Open PetrasPurlys opened 2 years ago
Hello @PetrasPurlys thanks for reaching out. I can't seem to recreate the error, I tried with
from math import floor # /
from math import ceil # /
from math import sqrt, log2 # /
which was sorted into
from math import ceil # /
from math import floor # /
from math import log2, sqrt # /
I am also using isort 5.10.1, is there any other config setting you've set?
isort version 5.10.1
Code in file:
from foo.bar import a # \ from foo.bar import b # \ from foo.bar import c, d, e # \
After running isort: from foo.bar import a # \ from foo.bar import foo.bar, b, c, d, e, from, import # \