Open MarcSkovMadsen opened 2 years ago
@MarcSkovMadsen
In your mypy.ini you can specify ignoring by modules:
[mypy-tests.*]
ignore_errors = True
Thanks for trying to help @Santhoshkumard11
I've added the below to my pyproject.toml
, but it does not change anything.
Ok. Changed to
I still would suggest fixing the underlying issue though. This is only a temporary workaround.
@MarcSkovMadsen Yes, will do.
Ok. Changed to
I still would suggest fixing the underlying issue though. This is only a temporary workaround.
This didn't work for me, but adding a mypy.ini
file with the following contents did...
[mypy-azure.*]
ignore_errors = true
When running mypy on my code it fails due to azure storage blob.
The error is
Please fix. Thanks