Skip to content

Commit ce035d2

Browse files
committed
Added annotations to kwargs for all functions
1 parent 6e406b4 commit ce035d2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

stubs/Authlib/authlib/integrations/base_client/async_app.pyi

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ log: Logger
99
__all__ = ["AsyncOAuth1Mixin", "AsyncOAuth2Mixin"]
1010

1111
class AsyncOAuth1Mixin(OAuth1Base):
12-
async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> httpx.Response: ...
13-
async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ...
14-
async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs) -> dict[str, Any]: ...
12+
async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> httpx.Response: ...
13+
async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ...
14+
async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ...
1515

1616
class AsyncOAuth2Mixin(OAuth2Base):
1717
async def load_server_metadata(self) -> dict[str, Any]: ...
18-
async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> httpx.Response: ...
19-
async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ...
20-
async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ...
18+
async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any]) -> httpx.Response: ...
19+
async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ...
20+
async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ...

0 commit comments

Comments
 (0)