We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac6c38 commit 91a90edCopy full SHA for 91a90ed
stubs/requests-oauthlib/requests_oauthlib/oauth1_auth.pyi
@@ -1,5 +1,6 @@
1
from _typeshed import Incomplete
2
from logging import Logger
3
+from typing import Any
4
5
from oauthlib.oauth1 import Client
6
from requests.auth import AuthBase
@@ -27,7 +28,9 @@ class OAuth1(AuthBase):
27
28
client_class: type[Client] | None = None,
29
force_include_body: bool = False,
30
*,
31
+ realm: Incomplete | None = None,
32
encoding: str = "utf-8",
33
nonce: Incomplete | None = None,
34
timestamp: Incomplete | None = None,
35
+ **kwargs: Any, # passed to client_class's __init__
36
) -> None: ...
0 commit comments