There are duplicate type signatures present in this function which prevents mypy from continuing to run checks:
|
async def _get_signers( |
|
self, **kwargs: Any |
|
): # type: (Any) -> list[AttestationSigner] |
This prevents customers from getting typing information from the package.
This is reproducible by running mypy==0.931 at the package level directory:
azure-sdk-for-python\sdk\attestation\azure-security-attestation>python -m mypy ./azure
azure\security\attestation\aio\_client_async.py:376: error: Function has duplicate type signatures
Found 1 error in 1 file (errors prevented further checking)
There are duplicate type signatures present in this function which prevents mypy from continuing to run checks:
azure-sdk-for-python/sdk/attestation/azure-security-attestation/azure/security/attestation/aio/_client_async.py
Lines 376 to 378 in c247151
This prevents customers from getting typing information from the package.
This is reproducible by running mypy==0.931 at the package level directory: