isort
isort copied to clipboard
Keep order for * imports
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.