mypy: Ignore missing imports

Otherwise modules like tqdm will cause mypy to emit an error, since
they're untyped.
pull/6736/head
Dylan Baker 4 years ago
parent 424190928a
commit 4d6ac91f95
  1. 3
      mypy.ini

@ -1,4 +1,5 @@
[mypy]
strict_optional = False
show_error_context = False
show_column_numbers = True
show_column_numbers = True
ignore_missing_imports = True

Loading…
Cancel
Save