aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2024-02-08 00:50:44 +0000
committerDan Albert <danalbert@google.com>2024-03-08 00:13:37 +0000
commitb4974daddf48fe6effe2a553cdcd5b53ff121945 (patch)
tree672b516320f5e05dae816aeade65477bc0162e38
parentf4e62eaac8c4cab4a79d01d0acc6eb31b33f2a0d (diff)
downloadexternal_updater-b4974daddf48fe6effe2a553cdcd5b53ff121945.tar.gz
Ignore another lint.
This one ought to be handled by isort rather than humans anyway. The places where it's firing aren't actually correct. It's complaining that the "third-party" import of the protobuf stubs should go above local imports, but that's not actually third-party, pylint just can't tell because the soong python build means the "local" sources aren't. Bug: None Test: make lint Change-Id: I31be5eca213536ab84d677ea4ac0a1acb13b699c
-rw-r--r--pyproject.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 6bd2642..12e5f58 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -19,6 +19,7 @@ disable = [
"fixme",
"missing-docstring",
"refactoring",
+ "wrong-import-order",
]
[build-system]