summaryrefslogtreecommitdiffstats
path: root/repo
diff options
context:
space:
mode:
Diffstat (limited to 'repo')
-rwxr-xr-xrepo6
1 files changed, 3 insertions, 3 deletions
diff --git a/repo b/repo
index 7f24ff1e..95f9df88 100755
--- a/repo
+++ b/repo
@@ -40,7 +40,7 @@ MIN_PYTHON_VERSION_HARD = (3, 5)
40 40
41 41
42# Keep basic logic in sync with repo_trace.py. 42# Keep basic logic in sync with repo_trace.py.
43class Trace(object): 43class Trace:
44 """Trace helper logic.""" 44 """Trace helper logic."""
45 45
46 REPO_TRACE = "REPO_TRACE" 46 REPO_TRACE = "REPO_TRACE"
@@ -1214,7 +1214,7 @@ def _FindRepo():
1214 return (repo, os.path.join(curdir, repodir)) 1214 return (repo, os.path.join(curdir, repodir))
1215 1215
1216 1216
1217class _Options(object): 1217class _Options:
1218 help = False 1218 help = False
1219 version = False 1219 version = False
1220 1220
@@ -1258,7 +1258,7 @@ def _ParseArguments(args):
1258 return cmd, opt, arg 1258 return cmd, opt, arg
1259 1259
1260 1260
1261class Requirements(object): 1261class Requirements:
1262 """Helper for checking repo's system requirements.""" 1262 """Helper for checking repo's system requirements."""
1263 1263
1264 REQUIREMENTS_NAME = "requirements.json" 1264 REQUIREMENTS_NAME = "requirements.json"