I am running zimports --multi-imports --style pycharm --black-line-length 88 (version 0.6.0)
getting:
from sqlalchemy import (
Column,
DateTime,
func,
insert,
Integer,
MetaData,
select,
String,
)
expected:
from sqlalchemy import (
Column,
DateTime,
Integer,
MetaData,
String,
func,
insert,
select,
)
I tried to debug a little bit and I think it goes wrong when the file gets parsed from ast. Seems that it returns the nodes in the tree with its own order and then no sort is happening from zimports, but im not sure.
I am running
zimports --multi-imports --style pycharm --black-line-length 88(version 0.6.0)getting:
expected:
I tried to debug a little bit and I think it goes wrong when the file gets parsed from
ast. Seems that it returns the nodes in the tree with its own order and then no sort is happening from zimports, but im not sure.