I\'m doing PEP8 checks in python using the python flake8 library. I have an import statement in an __init__.py file in one of my sub-modules which looks like this:<
__init__.py
According to flake8's documention, you can in-line ignore this specific warning with:
from .my_class import MyClass # noqa: F401
For reference, here are flake8's error codes.