summaryrefslogtreecommitdiffstats
path: root/subcmds
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds')
-rw-r--r--subcmds/init.py6
-rw-r--r--subcmds/manifest.py1
-rw-r--r--subcmds/sync.py2
3 files changed, 1 insertions, 8 deletions
diff --git a/subcmds/init.py b/subcmds/init.py
index 0c979cd4..d732374d 100644
--- a/subcmds/init.py
+++ b/subcmds/init.py
@@ -13,16 +13,10 @@
13# limitations under the License. 13# limitations under the License.
14 14
15import os 15import os
16import platform
17import re
18import sys 16import sys
19import urllib.parse
20 17
21from color import Coloring 18from color import Coloring
22from command import InteractiveCommand, MirrorSafeCommand 19from command import InteractiveCommand, MirrorSafeCommand
23from error import ManifestParseError
24from project import SyncBuffer
25from git_config import GitConfig
26from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD 20from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD
27from wrapper import Wrapper 21from wrapper import Wrapper
28 22
diff --git a/subcmds/manifest.py b/subcmds/manifest.py
index 08905cb4..f4602a59 100644
--- a/subcmds/manifest.py
+++ b/subcmds/manifest.py
@@ -15,7 +15,6 @@
15import json 15import json
16import os 16import os
17import sys 17import sys
18import optparse
19 18
20from command import PagedCommand 19from command import PagedCommand
21 20
diff --git a/subcmds/sync.py b/subcmds/sync.py
index e4e7a971..8db429bf 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -55,7 +55,7 @@ import gitc_utils
55from project import Project 55from project import Project
56from project import RemoteSpec 56from project import RemoteSpec
57from command import Command, DEFAULT_LOCAL_JOBS, MirrorSafeCommand, WORKER_BATCH_SIZE 57from command import Command, DEFAULT_LOCAL_JOBS, MirrorSafeCommand, WORKER_BATCH_SIZE
58from error import RepoChangedException, GitError, ManifestParseError 58from error import RepoChangedException, GitError
59import platform_utils 59import platform_utils
60from project import SyncBuffer 60from project import SyncBuffer
61from progress import Progress 61from progress import Progress