Skip to content

Commit

Permalink
requests-oauthlib: decoding can be None (#13404)
Browse files Browse the repository at this point in the history
it is passed along to oauthlib where the default there is None
  • Loading branch information
asottile authored Jan 18, 2025
1 parent 2a461a2 commit c20f05a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/requests-oauthlib/requests_oauthlib/oauth1_auth.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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,
*,
Expand Down

0 comments on commit c20f05a

Please sign in to comment.