summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-06-16 18:38:00 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-06-16 19:26:50 +0200
commit41f52ba6a94b388f2b832eb9cc75a0a3dc925086 (patch)
tree48ff9cd4884a739c89e7f3837d2b772afee5cc23 /setup.cfg
parent25811b82ea061f62c04d7ccd59a470bcee13989e (diff)
downloadastroid-git-41f52ba6a94b388f2b832eb9cc75a0a3dc925086.tar.gz
Add ignores for missing imports from ``importlib``
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg4
1 files changed, 4 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 1e2341a8..b1943a12 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -93,3 +93,7 @@ ignore_missing_imports = True
[mypy-gi.*]
ignore_missing_imports = True
+
+[mypy-importlib.*]
+# Importlib typeshed stubs do not include the private functions we use
+ignore_missing_imports = True