Skip to content

Commit c92b9a7

Browse files
committed
oops
1 parent 2bc6552 commit c92b9a7

File tree

1 file changed

+3
-3
lines changed
  • src/cryptography/hazmat/bindings/_rust

1 file changed

+3
-3
lines changed

src/cryptography/hazmat/bindings/_rust/x509.pyi

+3-3
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,10 @@ class CertificateRevocationList:
140140
def __eq__(self, other: object) -> bool: ...
141141
def __len__(self) -> int: ...
142142
@typing.overload
143-
def __getitem__(self, idx: int) -> RevokedCertificate: ...
143+
def __getitem__(self, idx: int) -> x509.RevokedCertificate: ...
144144
@typing.overload
145-
def __getitem__(self, idx: slice) -> list[RevokedCertificate]: ...
146-
def __iter__(self) -> typing.Iterator[RevokedCertificate]: ...
145+
def __getitem__(self, idx: slice) -> list[x509.RevokedCertificate]: ...
146+
def __iter__(self) -> typing.Iterator[x509.RevokedCertificate]: ...
147147
def is_signature_valid(
148148
self, public_key: CertificateIssuerPublicKeyTypes
149149
) -> bool: ...

0 commit comments

Comments
 (0)