Skip to content

Commit dd1416f

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

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,18 @@ 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: dict[str, Any]) -> httpx.Response: ...
12+
async def request(
13+
self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any]
14+
) -> httpx.Response: ...
1315
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]: ...
16+
async def fetch_access_token(
17+
self, request_token: dict[str, Any] | None = None, **kwargs: dict[str, Any]
18+
) -> dict[str, Any]: ...
1519

1620
class AsyncOAuth2Mixin(OAuth2Base):
1721
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: dict[str, Any]) -> httpx.Response: ...
22+
async def request(
23+
self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs: dict[str, Any]
24+
) -> httpx.Response: ...
1925
async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ...
2026
async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs: dict[str, Any]) -> dict[str, Any]: ...

0 commit comments

Comments
 (0)