[oauthlib] Fix create_token_response() body argument type (#14570)

This commit is contained in:
LinusMain
2025-08-13 17:08:22 +07:00
committed by GitHub
parent 21b9118f4a
commit 1286357b88
@@ -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,