diff options
author | BonfaceKilz | 2021-03-19 16:34:54 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-03-23 01:14:37 +0300 |
commit | ca53d3ba5177555fae95d49ced399dc1ad4fd442 (patch) | |
tree | 91f0b6eea118f8933a269706f9be47ed24f3d117 | |
parent | 381629550078f42011a5eaf5afe9fb7d0ee58985 (diff) | |
download | genenetwork3-ca53d3ba5177555fae95d49ced399dc1ad4fd442.tar.gz |
Re-add mypy conf file
Deleted in 56ce88a
-rw-r--r-- | gn3/computations/correlations.py | 2 | ||||
-rw-r--r-- | mypy.ini | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gn3/computations/correlations.py b/gn3/computations/correlations.py index d1d6ddb..dc2f8d3 100644 --- a/gn3/computations/correlations.py +++ b/gn3/computations/correlations.py @@ -4,7 +4,7 @@ from typing import Tuple from typing import Optional from typing import Callable -import scipy.stats # type: ignore +import scipy.stats def compute_sum(rhs: int, lhs: int) -> int: diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 0000000..83c6a9c --- /dev/null +++ b/mypy.ini @@ -0,0 +1,7 @@ +[mypy] + +[mypy-scipy.*] +ignore_missing_imports = True + +[mypy-ipfshttpclient.*] +ignore_missing_imports = True |