This repository was archived by the owner on Sep 13, 2023. It is now read-only.
This repository was archived by the owner on Sep 13, 2023. It is now read-only.
classify-imports instead of isort for import classification #680
I noticed that
isortis used for classifying imports, which is somethingisortcan do, but it's notisort's primary job. I wonder whether you've consideredclassify-importswhich is a utility library that is also used inreorder-python-imports, which is an an alternative toisortthat performs static import analysis. It might be a lighter and more tailored dependency to solve that problem. Just an idea. 😇