mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-19 04:21:14 +00:00
#560: Fix code style
This commit is contained in:
parent
2b88ea11ea
commit
ce6b82c92d
@ -1,19 +1,16 @@
|
|||||||
from six.moves import filterfalse
|
|
||||||
from thefuck.utils import replace_argument
|
from thefuck.utils import replace_argument
|
||||||
from thefuck.specific.git import git_support
|
from thefuck.specific.git import git_support
|
||||||
|
|
||||||
|
|
||||||
@git_support
|
@git_support
|
||||||
def match(command):
|
def match(command):
|
||||||
args = command.script_parts[2:]
|
files = [arg for arg in command.script_parts[2:]
|
||||||
files = list(filterfalse(is_option, args))
|
if not arg.startswith('-')]
|
||||||
return ('diff' in command.script and
|
return ('diff' in command.script
|
||||||
'--no-index' not in command.script and
|
and '--no-index' not in command.script
|
||||||
len(command.stdout) is 0 and
|
and not command.stdout
|
||||||
len(files) is 2)
|
and len(files) == 2)
|
||||||
|
|
||||||
def is_option(script_part):
|
|
||||||
return script_part.startswith('-')
|
|
||||||
|
|
||||||
@git_support
|
@git_support
|
||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user