commit: bfb38c3f10fb062c35d54c88eeb0593d8d39ebbd
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 17 16:15:50 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jan 17 16:15:50 2023 +0000
URL: https://gitweb.gentoo.org/proj/gentoopm.git/commit/?id=bfb38c3f
mypy: Ignore package manager modules
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
pyproject.toml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/pyproject.toml b/pyproject.toml
index 85490a4..2c35880 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -39,3 +39,11 @@ include = [
"test-root",
"tox.ini",
]
+
+[[tool.mypy.overrides]]
+module = [
+ "paludis.*",
+ "pkgcore.*",
+ "portage.*",
+]
+ignore_missing_imports = true