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
isort sorts ALL_CAPS objects before other objects, while autoflake sorts purely lexically after removing an unused import object from a from ... import ... line - which causes discrepancies and means isort has to be run after autoflake in CI's.
I suggest this be solved either by adhering to isort's sorting order when removing an import - or not resorting the import objects at all when removing and entirely leaving that up to isort.