Skip to content

Commit c20f05a

Browse files
authored
requests-oauthlib: decoding can be None (#13404)
it is passed along to oauthlib where the default there is None
1 parent 2a461a2 commit c20f05a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/requests-oauthlib/requests_oauthlib/oauth1_auth.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class OAuth1(AuthBase):
2323
signature_type="AUTH_HEADER",
2424
rsa_key: Incomplete | None = None,
2525
verifier: Incomplete | None = None,
26-
decoding: str = "utf-8",
26+
decoding: str | None = "utf-8",
2727
client_class: type[Client] | None = None,
2828
force_include_body: bool = False,
2929
*,

0 commit comments

Comments
 (0)