Skip to content

Commit c50be52

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent f8ceb98 commit c50be52

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

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

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

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

2016
class AsyncOAuth2Mixin(OAuth2Base):
2117
async def load_server_metadata(self) -> dict[str, Any]: ...
22-
async def request(
23-
self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: Any
24-
) -> httpx.Response: ...
18+
async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: Any) -> httpx.Response: ...
2519
async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: Any) -> dict[str, Any]: ...
2620
async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs: Any) -> dict[str, Any]: ...

0 commit comments

Comments
 (0)