summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <dpursehouse@collab.net>2020-02-12 11:25:13 +0900
committerDavid Pursehouse <dpursehouse@collab.net>2020-02-12 05:40:10 +0000
commit9090e804ab48adb96abc63e7403426534f4a0026 (patch)
tree1fde153b987811a16ac930ff605cd154e3647d01
parenteeff3537de0fe4a6d4f5dc3d04cd2dc28c3a044f (diff)
downloadgit-repo-9090e804ab48adb96abc63e7403426534f4a0026.tar.gz
Remove unused imports
flake8 reports: F401 'name' imported but unused Change-Id: Id45d6efa87ddf53f2c4a0f0c4136ea361ab1b746 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254592 Reviewed-by: Mike Frysinger <vapier@google.com> Tested-by: David Pursehouse <dpursehouse@collab.net>
-rwxr-xr-xmain.py2
-rw-r--r--subcmds/list.py1
2 files changed, 1 insertions, 2 deletions
diff --git a/main.py b/main.py
index f6c93e4b..b2845d8a 100755
--- a/main.py
+++ b/main.py
@@ -47,7 +47,7 @@ except ImportError:
47from color import SetDefaultColoring 47from color import SetDefaultColoring
48import event_log 48import event_log
49from repo_trace import SetTrace 49from repo_trace import SetTrace
50from git_command import git, GitCommand, user_agent 50from git_command import user_agent
51from git_config import init_ssh, close_ssh 51from git_config import init_ssh, close_ssh
52from command import InteractiveCommand 52from command import InteractiveCommand
53from command import MirrorSafeCommand 53from command import MirrorSafeCommand
diff --git a/subcmds/list.py b/subcmds/list.py
index 00172f0e..231da941 100644
--- a/subcmds/list.py
+++ b/subcmds/list.py
@@ -15,7 +15,6 @@
15# limitations under the License. 15# limitations under the License.
16 16
17from __future__ import print_function 17from __future__ import print_function
18import sys
19 18
20from command import Command, MirrorSafeCommand 19from command import Command, MirrorSafeCommand
21 20