mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-06-24 17:54:01 +08:00
[oauthlib] Fix create_token_response() body argument type (#14570)
This commit is contained in:
@@ -23,7 +23,7 @@ class TokenEndpoint(BaseEndpoint):
|
||||
self,
|
||||
uri: str,
|
||||
http_method: _HTTPMethod = "POST",
|
||||
body: str | None = None,
|
||||
body: str | dict[str, str] | list[tuple[str, str]] | None = None,
|
||||
headers: dict[str, str] | None = None,
|
||||
credentials=None,
|
||||
grant_type_for_scope=None,
|
||||
|
||||
Reference in New Issue
Block a user