Skip to content

Commit ff461ed

Browse files
committed
mildly more readable
1 parent b888c56 commit ff461ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyiceberg/table/inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,8 +679,8 @@ def all_known_files(self) -> dict[str, set[str]]:
679679
_all_known_files["manifest_lists"] = {snapshot.manifest_list for snapshot in snapshots}
680680
_all_known_files["statistics"] = {statistic.statistics_path for statistic in self.tbl.metadata.statistics}
681681

682-
snapshot_ids = [snapshot.snapshot_id for snapshot in snapshots]
683682
executor = ExecutorFactory.get_or_create()
683+
snapshot_ids = [snapshot.snapshot_id for snapshot in snapshots]
684684
files_by_snapshots: Iterator[Set[str]] = executor.map(
685685
lambda snapshot_id: set(self.files(snapshot_id)["file_path"].to_pylist()), snapshot_ids
686686
)

0 commit comments

Comments
 (0)