aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2023-06-09 23:48:36 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-06-09 23:48:36 +0000
commita6ac47b3593142cf8aaa29dabc47d67ae55c1ea3 (patch)
tree030a2e3a92198120d99709d63adbba779d6630f6
parentea58072c6196118406a121ea25aec45229a4d0ff (diff)
parentfb36fbd0108129e84c129a404840e34730459877 (diff)
downloadrepohooks-a6ac47b3593142cf8aaa29dabc47d67ae55c1ea3.tar.gz
pre-upload: fix up a few more lint errors that snuck in am: fb36fbd010
Original change: https://android-review.googlesource.com/c/platform/tools/repohooks/+/2618674 Change-Id: I6aac87a02a787ea600bbe576d256f6cf5a13a650 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rwxr-xr-xpre-upload.py5
-rw-r--r--tools/pylintrc4
2 files changed, 7 insertions, 2 deletions
diff --git a/pre-upload.py b/pre-upload.py
index 087dd31..3a9d599 100755
--- a/pre-upload.py
+++ b/pre-upload.py
@@ -438,10 +438,11 @@ def _identify_project(path, from_git=False):
cmd = ['git', 'rev-parse', '--show-toplevel']
project_path = rh.utils.run(cmd, capture_output=True).stdout.strip()
cmd = ['git', 'rev-parse', '--show-superproject-working-tree']
- superproject_path = rh.utils.run(cmd, capture_output=True).stdout.strip()
+ superproject_path = rh.utils.run(
+ cmd, capture_output=True).stdout.strip()
module_path = project_path[len(superproject_path) + 1:]
cmd = ['git', 'config', '-f', '.gitmodules',
- '--name-only', '--get-regexp', '^submodule\..*\.path$',
+ '--name-only', '--get-regexp', r'^submodule\..*\.path$',
f"^{module_path}$"]
module_name = rh.utils.run(cmd, cwd=superproject_path,
capture_output=True).stdout.strip()
diff --git a/tools/pylintrc b/tools/pylintrc
index cf157e0..3abe640 100644
--- a/tools/pylintrc
+++ b/tools/pylintrc
@@ -92,6 +92,10 @@ disable=
invalid-name,
locally-disabled,
missing-docstring,
+ no-else-break,
+ no-else-continue,
+ no-else-raise,
+ no-else-return,
too-few-public-methods,
too-many-arguments,
too-many-branches,