diff options
author | John L. Villalovos <john@sodarock.com> | 2022-10-19 09:39:17 -0700 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2022-10-19 09:39:17 -0700 |
commit | f0c02a553da05ea3fdca99798998f40cfd820983 (patch) | |
tree | e06ab31832a185e5b467f82cc7f1955cc3270199 | |
parent | 91f08f01356ca5e38d967700a5da053f05b6fab0 (diff) | |
download | gitlab-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.toml | 1 |
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", |