We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3755d59 commit cae9d02Copy full SHA for cae9d02
1 file changed
stubs/Authlib/authlib/jose/rfc7517/jwk.pyi
@@ -11,8 +11,10 @@ class JsonWebKey:
11
@classmethod
12
def import_key(
13
cls,
14
- raw: str | bytes | float | Iterable[SupportsIndex] | SupportsIndex | SupportsBytes | ReadableBuffer | Mapping[str, object],
15
- options: Mapping[str, object] | None = None
+ raw: (
+ str | bytes | float | Iterable[SupportsIndex] | SupportsIndex | SupportsBytes | ReadableBuffer | Mapping[str, object]
16
+ ),
17
+ options: Mapping[str, object] | None = None,
18
) -> Key: ...
19
20
def import_key_set(cls, raw: str | Collection[str] | dict[str, object]) -> KeySet: ...
0 commit comments