1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-06 02:41:10 +01:00

Remove unused imports

This commit is contained in:
mcarton 2015-08-26 20:55:47 +02:00
parent e5ce000399
commit 3bd2c8d4c8
11 changed files with 6 additions and 11 deletions

View File

@ -1,5 +1,5 @@
import re
from thefuck import utils, shells
from thefuck import shells
from thefuck.specific.git import git_support

View File

@ -1,4 +1,3 @@
from thefuck import utils
from thefuck.utils import replace_argument
from thefuck.specific.git import git_support

View File

@ -1,4 +1,4 @@
from thefuck import utils, shells
from thefuck import shells
from thefuck.specific.git import git_support

View File

@ -1,4 +1,3 @@
from thefuck import utils
from thefuck.utils import replace_argument
from thefuck.specific.git import git_support

View File

@ -1,4 +1,4 @@
from thefuck import shells, utils
from thefuck import shells
from thefuck.specific.git import git_support

View File

@ -1,4 +1,3 @@
from thefuck import utils
from thefuck.utils import replace_argument
from thefuck.specific.git import git_support

View File

@ -1,4 +1,3 @@
from thefuck import utils
from thefuck.specific.git import git_support

View File

@ -1,4 +1,3 @@
from thefuck import utils
from thefuck.utils import replace_argument
from thefuck.specific.git import git_support

View File

@ -1,4 +1,4 @@
from thefuck import utils, shells
from thefuck import shells
from thefuck.utils import replace_argument
from thefuck.specific.git import git_support

View File

@ -1,4 +1,4 @@
from thefuck import shells, utils
from thefuck import shells
from thefuck.specific.git import git_support

View File

@ -1,5 +1,5 @@
import re
from thefuck.utils import (replace_command, get_all_matched_commands)
from thefuck.utils import replace_command
def match(command, settings):
return (re.search(r"([^:]*): Unknown command.*", command.stderr) != None