summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2022-10-19 09:39:17 -0700
committerJohn L. Villalovos <john@sodarock.com>2022-10-19 09:39:17 -0700
commitf0c02a553da05ea3fdca99798998f40cfd820983 (patch)
treee06ab31832a185e5b467f82cc7f1955cc3270199
parent91f08f01356ca5e38d967700a5da053f05b6fab0 (diff)
downloadgitlab-f0c02a553da05ea3fdca99798998f40cfd820983.tar.gz
chore: add `not-callable` to pylint ignore list
The `not-callable` error started showing up. Ignore this error as it is invalid. Also `mypy` tests for these issues. Closes: #2334
-rw-r--r--pyproject.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 290cb71..42a0241 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -58,6 +58,7 @@ disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
+ "not-callable",
"protected-access",
"redefined-builtin",
"signature-differs",