Skip to content

Commit 3b5644b

Browse files
committed
change FileScanTask to ScanTask
1 parent 38d8b1e commit 3b5644b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyiceberg/table/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2022,9 +2022,9 @@ def projection(self) -> Schema:
20222022
return current_schema.select(*self.selected_fields, case_sensitive=self.case_sensitive)
20232023

20242024
@abstractmethod
2025-
def _do_plan_files(self, from_snapshot_id_exclusive: int, to_snapshot_id: int) -> Iterable[FileScanTask]: ...
2025+
def _do_plan_files(self, from_snapshot_id_exclusive: int, to_snapshot_id: int) -> Iterable[ScanTask]: ...
20262026

2027-
def plan_files(self) -> Iterable[FileScanTask]:
2027+
def plan_files(self) -> Iterable[ScanTask]:
20282028
if (
20292029
self.from_snapshot_id_exclusive is None
20302030
and self.to_snapshot_id is None

0 commit comments

Comments
 (0)