Skip to content

Commit 514d619

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 57fa61c commit 514d619

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from typing import Any
21
from logging import Logger
2+
from typing import Any
33

44
import requests
55
from authlib.integrations.base_client.sync_app import OAuth1Base, OAuth2Base
@@ -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) -> requests.Response: ...
12+
async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> requests.Response: ...
1313
async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ...
1414
async def fetch_access_token(self, request_token: dict[str, Any] | None = None, **kwargs) -> 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) -> requests.Response: ...
18+
async def request(self, method: str, url: str, token: dict[str, Any] | None = None, **kwargs) -> requests.Response: ...
1919
async def create_authorization_url(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ...
2020
async def fetch_access_token(self, redirect_uri: str | None = None, **kwargs) -> dict[str, Any]: ...

0 commit comments

Comments
 (0)