From 4d6ac91f950380d8262c13ce529ac0d6d8f6f4ba Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 4 Mar 2020 13:42:15 -0800 Subject: mypy: Ignore missing imports Otherwise modules like tqdm will cause mypy to emit an error, since they're untyped. --- mypy.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mypy.ini b/mypy.ini index aacfb3f..b8dad03 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,4 +1,5 @@ [mypy] strict_optional = False show_error_context = False -show_column_numbers = True \ No newline at end of file +show_column_numbers = True +ignore_missing_imports = True -- cgit v1.1