aboutsummaryrefslogtreecommitdiff
path: root/mypy.ini
diff options
context:
space:
mode:
authorzsloan2021-06-18 20:54:52 +0000
committerzsloan2021-06-18 22:08:04 +0000
commitf172f7cbe0e5fd44b452bf3f3be094ba8b6b2c0e (patch)
treeba772a521125200887eeb3db1aba35fca2af2397 /mypy.ini
parent476b146562070cee6a55c55c03c37ef3e19a1474 (diff)
downloadgenenetwork3-f172f7cbe0e5fd44b452bf3f3be094ba8b6b2c0e.tar.gz
add ignore_missing_imports for numpy in mypy.ini since it complains about that and we seem to have done the same thing for scipy
Diffstat (limited to 'mypy.ini')
-rw-r--r--mypy.ini3
1 files changed, 3 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini
index 5e1af13..5d66812 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -3,6 +3,9 @@
[mypy-scipy.*]
ignore_missing_imports = True
+[mypy-numpy.*]
+ignore_missing_imports = True
+
[mypy-MySQLdb.*]
ignore_missing_imports = True