Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions obstore/python/obstore/_list.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,9 @@ class ObjectMeta(TypedDict):
version: str | None
"""A version indicator for this object"""

ListChunkType = TypeVar( # noqa: PYI001, PLC0105
"ListChunkType",
Sequence[ObjectMeta],
RecordBatch,
Table,
covariant=True,
)
# We removed constraints here so that ListStream types work even when arro3-core is not
# installed. https://github.com/developmentseed/obstore/issues/572
ListChunkType = TypeVar("ListChunkType", covariant=True) # noqa: PYI001, PLC0105
"""The data structure used for holding list results.

By default, listing APIs return a `list` of [`ObjectMeta`][obstore.ObjectMeta]. However
Expand Down
Loading