Closed cancan101 closed 5 years ago
Are there any styles that put from .. import b before from .a import a? I am trying to match isort and am having trouble since isort puts the .. first.
from .. import b
from .a import a
..
There isn't in the specified styles, although you could make your own.
There is also flake8-isort that might solve this exact issue.
flake8-isort
Are there any styles that put
from .. import b
beforefrom .a import a
? I am trying to match isort and am having trouble since isort puts the..
first.