You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
When putting a third-party import after local import, pep8 style should reject it, but it doesn't:
The text was updated successfully, but these errors were encountered: