From 9090e804ab48adb96abc63e7403426534f4a0026 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Wed, 12 Feb 2020 11:25:13 +0900 Subject: 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 Tested-by: David Pursehouse --- main.py | 2 +- subcmds/list.py | 1 - 2 files changed, 1 insertion(+), 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: from color import SetDefaultColoring import event_log from repo_trace import SetTrace -from git_command import git, GitCommand, user_agent +from git_command import user_agent from git_config import init_ssh, close_ssh from command import InteractiveCommand from 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 @@ # limitations under the License. from __future__ import print_function -import sys from command import Command, MirrorSafeCommand -- cgit v1.2.3-54-g00ecf