Change dotted_string from method to str (#4335)

This commit is contained in:
Magnus Watn
2020-07-17 15:02:52 +02:00
committed by GitHub
parent d998d37954
commit 12f93797ff

View File

@@ -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]