Skip to content

Commit 7db9e06

Browse files
committed
revoked unnecessary change
1 parent b955e94 commit 7db9e06

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

pyiceberg/table/__init__.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2002,12 +2002,13 @@ def _build_residual_evaluator(self, spec_id: int) -> Callable[[DataFile], Residu
20022002
# The lambda created here is run in multiple threads.
20032003
# So we avoid creating _EvaluatorExpression methods bound to a single
20042004
# shared instance across multiple threads.
2005-
return lambda datafile: residual_evaluator_of(
2006-
spec=spec,
2007-
expr=self.row_filter,
2008-
case_sensitive=self.case_sensitive,
2009-
schema=self.table_metadata.schema(),
2010-
)
2005+
return lambda datafile: (
2006+
residual_evaluator_of(
2007+
spec=spec,
2008+
expr=self.row_filter,
2009+
case_sensitive=self.case_sensitive,
2010+
schema=self.table_metadata.schema(),
2011+
)
20112012

20122013
@staticmethod
20132014
def _check_sequence_number(min_sequence_number: int, manifest: ManifestFile) -> bool:

0 commit comments

Comments
 (0)