Skip to content

Commit 85ca48c

Browse files
committed
change FileScanTask to ScanTask
1 parent e8be5ab commit 85ca48c

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
@@ -1898,9 +1898,9 @@ def projection(self) -> Schema:
18981898
return current_schema.select(*self.selected_fields, case_sensitive=self.case_sensitive)
18991899

19001900
@abstractmethod
1901-
def _do_plan_files(self, from_snapshot_id_exclusive: int, to_snapshot_id: int) -> Iterable[FileScanTask]: ...
1901+
def _do_plan_files(self, from_snapshot_id_exclusive: int, to_snapshot_id: int) -> Iterable[ScanTask]: ...
19021902

1903-
def plan_files(self) -> Iterable[FileScanTask]:
1903+
def plan_files(self) -> Iterable[ScanTask]:
19041904
if (
19051905
self.from_snapshot_id_exclusive is None
19061906
and self.to_snapshot_id is None

0 commit comments

Comments
 (0)