forked from Archives/langchain
change to type checking (#5062)
This commit is contained in:
parent
424a573266
commit
8c661baefb
@ -4,7 +4,7 @@ from __future__ import annotations
|
|||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
from copy import deepcopy
|
from copy import deepcopy
|
||||||
from typing import Any, Dict, Iterable, List, Optional, Union
|
from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Union
|
||||||
|
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import requests
|
import requests
|
||||||
@ -16,13 +16,8 @@ _LOGGER = logging.getLogger(__name__)
|
|||||||
|
|
||||||
BASE_URL = os.getenv("POWERBI_BASE_URL", "https://api.powerbi.com/v1.0/myorg")
|
BASE_URL = os.getenv("POWERBI_BASE_URL", "https://api.powerbi.com/v1.0/myorg")
|
||||||
|
|
||||||
try:
|
if TYPE_CHECKING:
|
||||||
from azure.core.credentials import TokenCredential
|
from azure.core.credentials import TokenCredential
|
||||||
except ImportError:
|
|
||||||
_LOGGER.log(
|
|
||||||
logging.WARNING,
|
|
||||||
"Could not import azure.core python package.",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class PowerBIDataset(BaseModel):
|
class PowerBIDataset(BaseModel):
|
||||||
|
Loading…
Reference in New Issue
Block a user