|
|
|
|
|
by progval
1596 days ago
|
|
isort also kind of has this bad behavior when using 'import as': $ cat foo.py
from x import a, b, d, e
from x import c as C
$ isort foo.py
Fixing /tmp/foo.py
$ cat foo.py
from x import a, b
from x import c as C
from x import d, e
|
|