PyCQA / PyCQA/flake8-import-order
Third-party after local import should be forbidden but isn't
Open
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 280
- Forks
- 72
- Avg merge
- 12h 24m
- Merged PRs (30d)
- 1
Description
When putting a third-party import after local import, pep8 style should reject it, but it doesn't:
% cat test.py
import os
import third
from .local import something
import party
% flake8 test.py --select=I2 --import-order-style=pep8 && echo no problem
no problem
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reproducing the issue with the shown test.py contents and flake8 command using the pep8 import-order style. Trace the import-order validation for local, third-party, and subsequent third-party imports; done means the final import is rejected with the selected I2 check.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- tooling
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 45/100