From 62a845fd9462884d4688d2bf9b43dc4347775b55 Mon Sep 17 00:00:00 2001 From: Joseph Frazier <1212jtraceur@gmail.com> Date: Wed, 8 Mar 2017 12:43:05 -0500 Subject: [PATCH] fixup! Fix flake8 errors: E302 expected 2 blank lines, found 1 --- thefuck/rules/ifconfig_device_not_found.py | 1 + 1 file changed, 1 insertion(+) diff --git a/thefuck/rules/ifconfig_device_not_found.py b/thefuck/rules/ifconfig_device_not_found.py index 88406991..958a6a7c 100644 --- a/thefuck/rules/ifconfig_device_not_found.py +++ b/thefuck/rules/ifconfig_device_not_found.py @@ -1,6 +1,7 @@ import subprocess from thefuck.utils import for_app, replace_command, eager + @for_app('ifconfig') def match(command): return 'error fetching interface information: Device not found' \