Skip to content

Commit 0793713

Browse files
committed
fix docstring
1 parent efe50b4 commit 0793713

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyiceberg/table/snapshots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ def ancestors_of(current_snapshot: Optional[Snapshot], table_metadata: TableMeta
434434
def ancestors_between(
435435
to_snapshot: Snapshot, from_snapshot: Optional[Snapshot], table_metadata: TableMetadata
436436
) -> Iterable[Snapshot]:
437-
"""Get the ancestors of and including the given snapshot between the latest and oldest snapshot."""
437+
"""Get the ancestors of and including the given snapshot between the to and from snapshots."""
438438
if from_snapshot is not None:
439439
for snapshot in ancestors_of(to_snapshot, table_metadata):
440440
if snapshot == from_snapshot:

0 commit comments

Comments
 (0)