Skip to content

Commit 7c345bb

Browse files
authored
fix mypy error
1 parent 3c319ff commit 7c345bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stubs/jwcrypto/jwcrypto/jwk.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ class JWK(dict[str, Any]):
243243
@classmethod
244244
def from_password(cls, password: str) -> Self: ...
245245
def setdefault(self, key: str, default: _T | None = None) -> _T: ...
246-
def __hash__(self) -> int: ...
246+
def __hash__(self) -> int: ... # type: ignore[override]
247247
def __eq__(self, other: object, /) -> bool: ...
248248

249249
class JWKSet(dict[Literal["keys"], set[JWK]]):

0 commit comments

Comments
 (0)