aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-03-04 13:42:15 -0800
committerDylan Baker <dylan@pnwbakers.com>2020-03-05 09:58:52 -0800
commit4d6ac91f950380d8262c13ce529ac0d6d8f6f4ba (patch)
tree164444bbbbcf4f4d0f05c6280fe79a6ddb184af3
parent424190928aef287a3274925cad67b4458acd5811 (diff)
downloadmeson-4d6ac91f950380d8262c13ce529ac0d6d8f6f4ba.zip
meson-4d6ac91f950380d8262c13ce529ac0d6d8f6f4ba.tar.gz
meson-4d6ac91f950380d8262c13ce529ac0d6d8f6f4ba.tar.bz2
mypy: Ignore missing imports
Otherwise modules like tqdm will cause mypy to emit an error, since they're untyped.
-rw-r--r--mypy.ini3
1 files changed, 2 insertions, 1 deletions
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