1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 14:48:49 +00:00

fix indentation errors

This commit is contained in:
Alexander Fleming 2018-04-15 19:11:15 -04:00
parent 2d4a23df0b
commit 544070ff1c

View File

@ -9,7 +9,7 @@ def fix_git_command(git_command):
if git_command not in git_possible[0]:
close_match = get_close_matches(git_command, git_possible)
if len(close_match) > 0:
return close_match[0]
return close_match[0]
else:
return git_command
else: