Skip to content

Commit c87f74f

Browse files
committed
Revert unrelated ruff-format drift in DataScan
1 parent 2b1fb0e commit c87f74f

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

pyiceberg/table/__init__.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1973,11 +1973,13 @@ def _build_residual_evaluator(self, spec_id: int) -> Callable[[DataFile], Residu
19731973
# The lambda created here is run in multiple threads.
19741974
# So we avoid creating _EvaluatorExpression methods bound to a single
19751975
# shared instance across multiple threads.
1976-
return lambda datafile: residual_evaluator_of(
1977-
spec=spec,
1978-
expr=self.row_filter,
1979-
case_sensitive=self.case_sensitive,
1980-
schema=self.table_metadata.schema(),
1976+
return lambda datafile: (
1977+
residual_evaluator_of(
1978+
spec=spec,
1979+
expr=self.row_filter,
1980+
case_sensitive=self.case_sensitive,
1981+
schema=self.table_metadata.schema(),
1982+
)
19811983
)
19821984

19831985
@staticmethod

0 commit comments

Comments
 (0)