From 78515c7bbb81263fa339a67c2aabfa1a4f3c9af9 Mon Sep 17 00:00:00 2001 From: Joseph Frazier <1212jtraceur@gmail.com> Date: Wed, 8 Mar 2017 12:43:34 -0500 Subject: [PATCH] Fix flake8 errors: W391 blank line at end of file --- thefuck/rules/ifconfig_device_not_found.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/thefuck/rules/ifconfig_device_not_found.py b/thefuck/rules/ifconfig_device_not_found.py index 958a6a7c..a7e5026f 100644 --- a/thefuck/rules/ifconfig_device_not_found.py +++ b/thefuck/rules/ifconfig_device_not_found.py @@ -21,5 +21,3 @@ def get_new_command(command): interface = command.stderr.split(' ')[0][:-1] possible_interfaces = _get_possible_interfaces() return replace_command(command, interface, possible_interfaces) - -