Update to mypy 1.14 (#13272)

This commit is contained in:
Stephen Morton
2024-12-20 17:29:38 -08:00
committed by GitHub
parent 8e31597fa5
commit 097581ea47
43 changed files with 357 additions and 79 deletions
+4 -4
View File
@@ -29,10 +29,10 @@ priv_bytes: Incomplete
JWKTypesRegistry: Incomplete
class ParmType(Enum):
name: str
b64: str
b64u: str
unsupported: str
name = "A string with a name" # pyright: ignore[reportAssignmentType]
b64 = "Base64url Encoded"
b64u = "Base64urlUint Encoded"
unsupported = "Unsupported Parameter"
class JWKParameter(NamedTuple):
description: Incomplete