1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-01-18 20:11:17 +00:00

#560: Fix code style

This commit is contained in:
Vladimir Iakovlev 2016-10-03 13:07:30 +02:00
parent 2b88ea11ea
commit ce6b82c92d

View File

@ -1,19 +1,16 @@
from six.moves import filterfalse
from thefuck.utils import replace_argument
from thefuck.specific.git import git_support
@git_support
def match(command):
args = command.script_parts[2:]
files = list(filterfalse(is_option, args))
return ('diff' in command.script and
'--no-index' not in command.script and
len(command.stdout) is 0 and
len(files) is 2)
files = [arg for arg in command.script_parts[2:]
if not arg.startswith('-')]
return ('diff' in command.script
and '--no-index' not in command.script
and not command.stdout
and len(files) == 2)
def is_option(script_part):
return script_part.startswith('-')
@git_support
def get_new_command(command):