diff options
Diffstat (limited to 'repo')
-rwxr-xr-x | repo | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. |
43 | class Trace(object): | 43 | class 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 | ||
1217 | class _Options(object): | 1217 | class _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 | ||
1261 | class Requirements(object): | 1261 | class 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" |