From fb3d8d1e012c0be59e191e68aa461ef0bfb19e8d Mon Sep 17 00:00:00 2001 From: Joseph Frazier <1212jtraceur@gmail.com> Date: Thu, 6 Oct 2016 13:38:36 -0400 Subject: [PATCH] Ignore flake8 errors with inline comments: F401,F403 --- thefuck/system/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thefuck/system/__init__.py b/thefuck/system/__init__.py index cc4698ac..bb13c30b 100644 --- a/thefuck/system/__init__.py +++ b/thefuck/system/__init__.py @@ -2,6 +2,6 @@ import sys if sys.platform == 'win32': - from .win32 import * + from .win32 import * # noqa: F401,F403 else: - from .unix import * + from .unix import * # noqa: F401,F403