diff options
author | BonfaceKilz | 2022-06-20 17:19:28 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-06-21 11:04:33 +0300 |
commit | 493a2140f0e57eddfb3be899a14e5936b8945fa6 (patch) | |
tree | 690dbaeedd978d7791f554b119ad41e0871611e4 | |
parent | e3834ca0fb25a6bffe935391b24fedbec5bf25e8 (diff) | |
download | genenetwork3-493a2140f0e57eddfb3be899a14e5936b8945fa6.tar.gz |
mypy.ini: Ignore missing lmdb mypy stubs
-rw-r--r-- | mypy.ini | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -12,6 +12,9 @@ ignore_missing_imports = True [mypy-ipfshttpclient.*] ignore_missing_imports = True +[mypy-lmdb.*] +ignore_missing_imports = True + [mypy-pingouin.*] ignore_missing_imports = True @@ -37,4 +40,4 @@ ignore_missing_imports = True ignore_missing_imports = True [mypy-sklearn.*] -ignore_missing_imports = True
\ No newline at end of file +ignore_missing_imports = True |