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
2
1
import re
2
+ import warnings
3
+ from functools import lru_cache
3
4
from typing import (
4
5
TYPE_CHECKING ,
5
6
Any ,
6
7
Callable ,
7
- cast ,
8
8
Dict ,
9
9
Iterator ,
10
10
List ,
11
11
Optional ,
12
12
Union ,
13
+ cast ,
13
14
)
14
- import warnings
15
15
16
16
import pystac
17
17
import pystac .utils
22
22
from pystac_client ._utils import Modifiable , call_modifier
23
23
from pystac_client .collection_client import CollectionClient
24
24
from pystac_client .conformance import ConformanceClasses
25
-
26
25
from pystac_client .errors import ClientTypeError
27
26
from pystac_client .exceptions import APIError
28
27
from pystac_client .item_search import (
41
40
)
42
41
from pystac_client .mixins import QueryablesMixin
43
42
from 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
49
44
50
45
if TYPE_CHECKING :
51
46
from pystac .item import Item as Item_Type
You can’t perform that action at this time.
0 commit comments