Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhealy1 committed Apr 23, 2024
1 parent ba7efaf commit c8ac185
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stac_fastapi/core/stac_fastapi/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ async def item_collection(
Args:
collection_id (str): The identifier of the collection to read items from.
bbox (OOptional[BBox]): The bounding box to filter items by.
bbox (Optional[BBox]): The bounding box to filter items by.
datetime (Optional[DateTimeType]): The datetime range to filter items by.
limit (int): The maximum number of items to return. The default value is 10.
token (str): A token used for pagination.
Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/tests/resources/test_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async def test_update_collection_already_exists(ctx, app_client):
"""Test updating a collection which already exists"""
ctx.collection["keywords"].append("test")
resp = await app_client.put(
"/collections/{ctx.collection['id']}", json=ctx.collection
f"/collections/{ctx.collection['id']}", json=ctx.collection
)
assert resp.status_code == 200

Expand Down

0 comments on commit c8ac185

Please sign in to comment.