diff options
author | Frederick Muriuki Muriithi | 2021-12-14 13:46:40 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2021-12-14 13:46:40 +0300 |
commit | 14f70b34235dbf43d68ad72ea74a2020af890072 (patch) | |
tree | d84ca1beafee4a9e68f6a102ad770a910e4ee3ba /mypy.ini | |
parent | 2aa097404a64260217bb06c131376c98adb8c980 (diff) | |
download | genenetwork3-14f70b34235dbf43d68ad72ea74a2020af890072.tar.gz |
mypy: ignore some imports and errors
* Ignore some missing library stubs
* Ignore some typing errors
* Fix obvious typing errors
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -19,4 +19,16 @@ ignore_missing_imports = True ignore_missing_imports = True [mypy-requests.*] +ignore_missing_imports = True + +[mypy-flask.*] +ignore_missing_imports = True + +[mypy-werkzeug.*] +ignore_missing_imports = True + +[mypy-SPARQLWrapper.*] +ignore_missing_imports = True + +[mypy-pandas.*] ignore_missing_imports = True
\ No newline at end of file |