Skip to content
Snippets Groups Projects
Commit b617c176 authored by Sybren A. Stüvel's avatar Sybren A. Stüvel
Browse files

Removed mypy warn_unused_ignores=True setting

Some errors are platform-specific (e.g. using asyncio.ProactorEventLoop
only exists on Windows and thus mypy complains on Linux) so ignoring those
is needed on Linux but not on Windows. Yay.
parent 3fb71241
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,6 @@ addopts = -v --cov flamenco_worker --cov-report term-missing --ignore node_modul ...@@ -3,7 +3,6 @@ addopts = -v --cov flamenco_worker --cov-report term-missing --ignore node_modul
[mypy] [mypy]
python_version = 3.7 python_version = 3.7
warn_unused_ignores = True
ignore_missing_imports = True ignore_missing_imports = True
follow_imports = skip follow_imports = skip
incremental = True incremental = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment