Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed

- Updated `get_items` signatures for PySTAC v1.8 [#559](https://github.com/stac-utils/pystac-client/pull/559)
- Updated `get_items` signatures for PySTAC v1.8 [#559](https://github.com/stac-utils/pystac-client/pull/559), [#579](https://github.com/stac-utils/pystac-client/pull/579)

## [v0.7.2] - 2023-06-23

Expand Down
2 changes: 1 addition & 1 deletion pystac_client/item_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def _format(c: Any) -> Collections:

@staticmethod
def _format_ids(value: Optional[IDsLike]) -> Optional[IDs]:
if value is None:
if not value:
return None

if isinstance(value, str):
Expand Down
Loading