File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change 1- from functools import lru_cache
21import re
2+ import warnings
3+ from functools import lru_cache
34from typing import (
45 TYPE_CHECKING ,
56 Any ,
67 Callable ,
7- cast ,
88 Dict ,
99 Iterator ,
1010 List ,
1111 Optional ,
1212 Union ,
13+ cast ,
1314)
14- import warnings
1515
1616import pystac
1717import pystac .utils
2222from pystac_client ._utils import Modifiable , call_modifier
2323from pystac_client .collection_client import CollectionClient
2424from pystac_client .conformance import ConformanceClasses
25-
2625from pystac_client .errors import ClientTypeError
2726from pystac_client .exceptions import APIError
2827from pystac_client .item_search import (
4140)
4241from pystac_client .mixins import QueryablesMixin
4342from pystac_client .stac_api_io import StacApiIO , Timeout
44- from pystac_client .warnings import (
45- DoesNotConformTo ,
46- FallbackToPystac ,
47- NoConformsTo ,
48- )
43+ from pystac_client .warnings import DoesNotConformTo , FallbackToPystac , NoConformsTo
4944
5045if TYPE_CHECKING :
5146 from pystac .item import Item as Item_Type
You can’t perform that action at this time.
0 commit comments