remove quoted strings (#6933)

This commit is contained in:
Jelle Zijlstra
2022-01-16 14:29:13 -08:00
committed by GitHub
parent 85318d1b21
commit 0949e9e90d
7 changed files with 18 additions and 24 deletions

View File

@@ -282,7 +282,7 @@ class UniformResourceIdentifier(GeneralName):
class ExtensionType(metaclass=ABCMeta):
oid: ObjectIdentifier
_T = TypeVar("_T", bound="ExtensionType")
_T = TypeVar("_T", bound=ExtensionType)
class Extension(Generic[_T]):
critical: bool