requests-oauthlib: decoding can be None (#13404)

it is passed along to oauthlib where the default there is None
This commit is contained in:
Anthony Sottile
2025-01-17 21:39:27 -05:00
committed by GitHub
parent 2a461a2f79
commit c20f05af5f

View File

@@ -23,7 +23,7 @@ class OAuth1(AuthBase):
signature_type="AUTH_HEADER",
rsa_key: Incomplete | None = None,
verifier: Incomplete | None = None,
decoding: str = "utf-8",
decoding: str | None = "utf-8",
client_class: type[Client] | None = None,
force_include_body: bool = False,
*,