Skip to content

Commit 7cb5fd2

Browse files
authored
Fix usage documentation of ItemSearch (#790)
* Fix missing comma * Update changelog
1 parent ed725ce commit 7cb5fd2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Fix usage documentation of `ItemSearch`
13+
1014
## [v0.8.6] - 2025-02-11
1115

1216
### Changed

docs/usage.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ requests to a service's "search" endpoint. This method returns a
372372
>>> from pystac_client import Client
373373
>>> catalog = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1')
374374
>>> results = catalog.search(
375-
... max_items=5
375+
... max_items=5,
376376
... bbox=[-73.21, 43.99, -73.12, 44.05],
377377
... datetime=['2019-01-01T00:00:00Z', '2019-01-02T00:00:00Z'],
378378
... )

0 commit comments

Comments
 (0)