Skip to content

Commit 980739b

Browse files
committed
isort reordered imports
1 parent 9290ba8 commit 980739b

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

pystac_client/client.py

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
from functools import lru_cache
21
import re
2+
import warnings
3+
from functools import lru_cache
34
from 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

1616
import pystac
1717
import pystac.utils
@@ -22,7 +22,6 @@
2222
from pystac_client._utils import Modifiable, call_modifier
2323
from pystac_client.collection_client import CollectionClient
2424
from pystac_client.conformance import ConformanceClasses
25-
2625
from pystac_client.errors import ClientTypeError
2726
from pystac_client.exceptions import APIError
2827
from pystac_client.item_search import (
@@ -41,11 +40,7 @@
4140
)
4241
from pystac_client.mixins import QueryablesMixin
4342
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
4944

5045
if TYPE_CHECKING:
5146
from pystac.item import Item as Item_Type

0 commit comments

Comments
 (0)