Skip to content

Commit c8ac185

Browse files
committed
spelling
1 parent ba7efaf commit c8ac185

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stac_fastapi/core/stac_fastapi/core/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ async def item_collection(
255255
256256
Args:
257257
collection_id (str): The identifier of the collection to read items from.
258-
bbox (OOptional[BBox]): The bounding box to filter items by.
258+
bbox (Optional[BBox]): The bounding box to filter items by.
259259
datetime (Optional[DateTimeType]): The datetime range to filter items by.
260260
limit (int): The maximum number of items to return. The default value is 10.
261261
token (str): A token used for pagination.

stac_fastapi/tests/resources/test_collection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ async def test_update_collection_already_exists(ctx, app_client):
5656
"""Test updating a collection which already exists"""
5757
ctx.collection["keywords"].append("test")
5858
resp = await app_client.put(
59-
"/collections/{ctx.collection['id']}", json=ctx.collection
59+
f"/collections/{ctx.collection['id']}", json=ctx.collection
6060
)
6161
assert resp.status_code == 200
6262

0 commit comments

Comments
 (0)