Skip to content

Commit 8c865a0

Browse files
authored
[Fix] mypy error: Skipping analyzing "google": module is installed, but missing library stubs or py.typed marker (#769)
1 parent 9d39254 commit 8c865a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

databricks/sdk/credentials_provider.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
from datetime import datetime
1414
from typing import Callable, Dict, List, Optional, Tuple, Union
1515

16-
import google.auth
16+
import google.auth # type: ignore
1717
import requests
18-
from google.auth import impersonated_credentials
19-
from google.auth.transport.requests import Request
20-
from google.oauth2 import service_account
18+
from google.auth import impersonated_credentials # type: ignore
19+
from google.auth.transport.requests import Request # type: ignore
20+
from google.oauth2 import service_account # type: ignore
2121

2222
from .azure import add_sp_management_token, add_workspace_id_header
2323
from .oauth import (ClientCredentials, OAuthClient, Refreshable, Token,

0 commit comments

Comments
 (0)