From bddb43b98768b0ab0c7218180f24802733007abf Mon Sep 17 00:00:00 2001 From: Adam Barnes Date: Wed, 22 Mar 2017 10:29:50 +0000 Subject: [PATCH] Removed an unused import. --- thefuck/rules/git_push_without_commits.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/thefuck/rules/git_push_without_commits.py b/thefuck/rules/git_push_without_commits.py index 119c903..b9c4ae2 100644 --- a/thefuck/rules/git_push_without_commits.py +++ b/thefuck/rules/git_push_without_commits.py @@ -1,7 +1,5 @@ import re -from thefuck.utils import replace_command - fix = 'git commit -m "Initial commit." && {command}' refspec_does_not_match = re.compile(r'src refspec \w+ does not match any\.')