1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-21 20:38:54 +00:00

Ignore flake8 errors with inline comments: E402 module level import not at top of file

https://github.com/nvbn/thefuck/pull/563#discussion_r82105200
This commit is contained in:
Joseph Frazier 2016-10-06 09:20:12 -04:00
parent 725605cd20
commit c4c6f506f4

View File

@ -3,16 +3,16 @@ from .system import init_output
init_output() init_output()
from argparse import ArgumentParser from argparse import ArgumentParser # noqa: E402
from pprint import pformat from pprint import pformat # noqa: E402
import sys import sys # noqa: E402
from . import logs, types from . import logs, types # noqa: E402
from .shells import shell from .shells import shell # noqa: E402
from .conf import settings from .conf import settings # noqa: E402
from .corrector import get_corrected_commands from .corrector import get_corrected_commands # noqa: E402
from .exceptions import EmptyCommand from .exceptions import EmptyCommand # noqa: E402
from .utils import get_installation_info, get_alias from .utils import get_installation_info, get_alias # noqa: E402
from .ui import select_command from .ui import select_command # noqa: E402
def fix_command(): def fix_command():