Add rule for fixing imports which use as with a no-op
Open
good first issue
help wanted
- Dominant language
- Python
- Stars
- 714
- Forks
- 72
- PR merge metrics
- No merged PRs in 30d
Description
For example:
```python
from example.fixit_ex import ExampleClass as ExampleClass
```
Should be:
```python
from example.fixit_ex import ExampleClass
```
Because using `as` with the same resulting name is a no-operation action.
Contributor guide
Assessment
This issue has not been assessed yet.