Skip to content

Commit 059766d

Browse files
fix incorrect search_filter arg in Data API documentation example (#1159)
fix incorrect arg in Python docs
1 parent a582e1e commit 059766d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/python/sdk-guide.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def main():
120120
data_filter.date_range_filter('acquired', gt=datetime(2022, 6, 1, 1))
121121
])
122122

123-
for item in pl.data.search(['PSScene'], filter=sfilter, limit=10):
123+
for item in pl.data.search(['PSScene'], search_filter=sfilter, limit=10):
124124
print(item["id"])
125125
```
126126

@@ -331,4 +331,3 @@ If there's something you're missing or are stuck, the development team would lov
331331

332332
- To report a bug or suggest a feature, [raise an issue on GitHub](https://github.com/planetlabs/planet-client-python/issues/new)
333333
- To get in touch with the development team, email [[email protected]](mailto:[email protected])
334-

0 commit comments

Comments
 (0)