We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bc6552 commit c92b9a7Copy full SHA for c92b9a7
src/cryptography/hazmat/bindings/_rust/x509.pyi
@@ -140,10 +140,10 @@ class CertificateRevocationList:
140
def __eq__(self, other: object) -> bool: ...
141
def __len__(self) -> int: ...
142
@typing.overload
143
- def __getitem__(self, idx: int) -> RevokedCertificate: ...
+ def __getitem__(self, idx: int) -> x509.RevokedCertificate: ...
144
145
- def __getitem__(self, idx: slice) -> list[RevokedCertificate]: ...
146
- def __iter__(self) -> typing.Iterator[RevokedCertificate]: ...
+ def __getitem__(self, idx: slice) -> list[x509.RevokedCertificate]: ...
+ def __iter__(self) -> typing.Iterator[x509.RevokedCertificate]: ...
147
def is_signature_valid(
148
self, public_key: CertificateIssuerPublicKeyTypes
149
) -> bool: ...
0 commit comments