isort icon indicating copy to clipboard operation
isort copied to clipboard

Keep order for * imports

Open Nodd opened this issue 3 years ago • 0 comments

This code::

from math import *
from cmath import *

is transformed to:

from cmath import *
from math import *

I know that this is very bad practice (its not my code...) but rhe order of these imports matters, it should not be changed.

Nodd avatar May 09 '22 23:05 Nodd