Skip to content

Commit d11ed06

Browse files
committed
feat: walk
1 parent d708d3f commit d11ed06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stacrs.pyi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -390,10 +390,10 @@ async def search_to(
390390
... )
391391
"""
392392

393-
async def walk(
393+
def walk(
394394
container: dict[str, Any],
395-
) -> AsyncIterator[(dict[str, Any], list[dict[str, Any], list[dict[str, Any]]])]:
396-
"""Walks a STAC catalog or collection.
395+
) -> AsyncIterator[tuple[dict[str, Any], list[dict[str, Any]], list[dict[str, Any]]]]:
396+
"""Recursively walks a STAC catalog or collection breadth-first.
397397
398398
Args:
399399
container: A STAC catalog or collection.

0 commit comments

Comments
 (0)