Skip to content

Commit b393214

Browse files
committed
formatting update
1 parent 6dc2162 commit b393214

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

pystac_client/client.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,12 @@
3636
)
3737
from pystac_client.mixins import QUERYABLES_ENDPOINT, QueryablesMixin
3838
from pystac_client.stac_api_io import StacApiIO, Timeout
39-
from pystac_client.warnings import DoesNotConformTo, FallbackToPystac, NoConformsTo, PystacClientWarning
39+
from pystac_client.warnings import (
40+
DoesNotConformTo,
41+
FallbackToPystac,
42+
NoConformsTo,
43+
PystacClientWarning,
44+
)
4045

4146
if TYPE_CHECKING:
4247
from pystac.item import Item as Item_Type
@@ -462,7 +467,8 @@ def get_items(
462467
warnings.warn(
463468
"Getting items recursively using the /search endpoint "
464469
"(the recursive argument is being ignored).",
465-
PystacClientWarning)
470+
PystacClientWarning,
471+
)
466472
search = self.search(ids=ids)
467473
yield from search.items()
468474
else:

0 commit comments

Comments
 (0)