1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-20 20:09:07 +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()
from argparse import ArgumentParser
from pprint import pformat
import sys
from . import logs, types
from .shells import shell
from .conf import settings
from .corrector import get_corrected_commands
from .exceptions import EmptyCommand
from .utils import get_installation_info, get_alias
from .ui import select_command
from argparse import ArgumentParser # noqa: E402
from pprint import pformat # noqa: E402
import sys # noqa: E402
from . import logs, types # noqa: E402
from .shells import shell # noqa: E402
from .conf import settings # noqa: E402
from .corrector import get_corrected_commands # noqa: E402
from .exceptions import EmptyCommand # noqa: E402
from .utils import get_installation_info, get_alias # noqa: E402
from .ui import select_command # noqa: E402
def fix_command():