Skip to content

Commit c17df44

Browse files
committed
Added "type: ignore[import-untyped]" to pass mypytest
1 parent 8025584 commit c17df44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from logging import Logger
22
from typing import Any
33

4-
import requests
4+
import requests # type: ignore[import-untyped]
55
from authlib.integrations.base_client.sync_app import OAuth1Base, OAuth2Base
66

77
log: Logger
@@ -17,4 +17,4 @@ class AsyncOAuth2Mixin(OAuth2Base):
1717
async def load_server_metadata(self) -> dict[str, Any]: ...
1818
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]: ...
20-
async def fetch_access_token(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]: ...

0 commit comments

Comments
 (0)