-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Closed
Labels
bugmypy got something wrongmypy got something wrong
Description
mypy version 0.910 is being used along with Python 3.7
I am importing the python module azure-storage-blob in my code. When using mypy it comes up with the following errors:
/virtualenvs/src-foikFr8K/lib/python3.7/site-packages/azure/storage/blob/_serialize.py:129: error: Type signature has too many arguments
/virtualenvs/src-foikFr8K/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py:1406: error: Type signature has too few arguments
This fails on the line when I do this import
from azure.storage.blob import BlobServiceClient, BlobClient
Obviously I cannot change the code for this package so I need to specify in the config file to ignore it.
However, whatever I put in, it doesn't seem to ignore it:
[mypy-azure-storage-blob]
ignore_errors = True
Any ideas?
joegoldbeck
Metadata
Metadata
Assignees
Labels
bugmypy got something wrongmypy got something wrong