From 12f93797ffb2084da9b445fac5a66a1dcbe81ae4 Mon Sep 17 00:00:00 2001 From: Magnus Watn Date: Fri, 17 Jul 2020 15:02:52 +0200 Subject: [PATCH] Change dotted_string from method to str (#4335) --- third_party/2and3/cryptography/x509.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/2and3/cryptography/x509.pyi b/third_party/2and3/cryptography/x509.pyi index 8d460e972..362a4bdc6 100644 --- a/third_party/2and3/cryptography/x509.pyi +++ b/third_party/2and3/cryptography/x509.pyi @@ -14,8 +14,8 @@ from cryptography.hazmat.primitives.hashes import HashAlgorithm from cryptography.hazmat.primitives.serialization import Encoding class ObjectIdentifier(object): + dotted_string: str def __init__(self, dotted_string: str) -> None: ... - def dotted_string(self) -> str: ... class CRLEntryExtensionOID(object): CERTIFICATE_ISSUER: ClassVar[ObjectIdentifier]