diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-03-04 13:42:15 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-03-05 09:58:52 -0800 |
commit | 4d6ac91f950380d8262c13ce529ac0d6d8f6f4ba (patch) | |
tree | 164444bbbbcf4f4d0f05c6280fe79a6ddb184af3 /mypy.ini | |
parent | 424190928aef287a3274925cad67b4458acd5811 (diff) | |
download | meson-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.
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |