From 2c7ce91dd50366dd888e66ed7c42ad25f5b01294 Mon Sep 17 00:00:00 2001 From: Joseph Frazier <1212jtraceur@gmail.com> Date: Wed, 8 Mar 2017 12:42:24 -0500 Subject: [PATCH] Fix flake8 errors: F401 'sys' imported but unused --- thefuck/rules/ifconfig_device_not_found.py | 1 - 1 file changed, 1 deletion(-) diff --git a/thefuck/rules/ifconfig_device_not_found.py b/thefuck/rules/ifconfig_device_not_found.py index f8692236..88406991 100644 --- a/thefuck/rules/ifconfig_device_not_found.py +++ b/thefuck/rules/ifconfig_device_not_found.py @@ -1,6 +1,5 @@ import subprocess from thefuck.utils import for_app, replace_command, eager -import sys @for_app('ifconfig') def match(command):