summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiel van Schijndel <giel@mortis.eu>2021-04-23 11:21:10 +0200
committerGiel van Schijndel <giel@mortis.eu>2021-04-23 15:23:11 +0200
commit74a1b17a29390660abe79d83d837a666141f8625 (patch)
tree63c36b4ee7e7b1346052aced50dcf1485edebd5f
parent6d06f5af4311e6a1d17213dde57a261e30dbf669 (diff)
downloadgitpython-74a1b17a29390660abe79d83d837a666141f8625.tar.gz
test(mypy): don't complain about missing type hints for 'gitdb'
-rw-r--r--mypy.ini4
1 files changed, 4 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini
index 69e97757..b63d68fd 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -3,3 +3,7 @@
# TODO: enable when we've fully annotated everything
#disallow_untyped_defs = True
+
+# TODO: remove when 'gitdb' is fully annotated
+[mypy-gitdb.*]
+ignore_missing_imports = True