Update mypy config

It now ignores unused imports, because I don't want to write types for
all the libraries I use.
This commit is contained in:
Joscha 2019-05-28 11:22:03 +00:00
parent 1803a6676e
commit ce73a7d3bf

View file

@ -2,3 +2,4 @@
disallow_untyped_defs = True disallow_untyped_defs = True
disallow_incomplete_defs = True disallow_incomplete_defs = True
no_implicit_optional = True no_implicit_optional = True
ignore_missing_imports = True