Is is possible to ignore non-used imports placed at the bottom of the file, since I think it's pretty clear that these imports are used solely to include symbols into the module globals.
I know that I can list these symbols into __all__ but it means duplication and also __all__ is for import * which itself is not a recommended style.
Hi,
Is is possible to ignore non-used imports placed at the bottom of the file, since I think it's pretty clear that these imports are used solely to include symbols into the module globals.
I know that I can list these symbols into
__all__
but it means duplication and also__all__
is forimport *
which itself is not a recommended style.