See #10365 (comment) and #10390
We currently do not offer any fixes for unused imports in __init__.py files.
This issue is to fix first-party imports by
- Adding them to
__all__ if __all__ is present
- Otherwise, converting them to a redundant alias e.g.
import foo as foo.
We can probably label this fix as safe.