From c775937d17a2518a97b0340e46964fb7c46fce29 Mon Sep 17 00:00:00 2001 From: Joseph Frazier <1212jtraceur@gmail.com> Date: Wed, 8 Mar 2017 12:40:11 -0500 Subject: [PATCH] fixup! Fix flake8 errors: E101/W191 indentation contains (mixed spaces and) tabs --- thefuck/rules/git_add_force.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thefuck/rules/git_add_force.py b/thefuck/rules/git_add_force.py index 9adc0725..bf7c28b8 100644 --- a/thefuck/rules/git_add_force.py +++ b/thefuck/rules/git_add_force.py @@ -10,4 +10,4 @@ def match(command): @git_support def get_new_command(command): - return replace_argument(command.script, 'add', 'add --force') + return replace_argument(command.script, 'add', 'add --force')