We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ec381e commit c0dfdafCopy full SHA for c0dfdaf
pyiceberg/expressions/visitors.py
@@ -25,7 +25,6 @@
25
Dict,
26
Generic,
27
List,
28
- Optional,
29
Set,
30
SupportsFloat,
31
Tuple,
@@ -2008,7 +2007,7 @@ def _make_key(
2008
2007
spec_id: int,
2009
expr: BooleanExpression,
2010
case_sensitive: bool,
2011
- schema_id: Optional[int] = None,
+ schema_id: int | None = None,
2012
) -> str:
2013
"""Create deterministic cache key from evaluator parameters.
2014
@@ -2030,7 +2029,7 @@ def get(
2030
2029
2031
2032
schema: Schema,
2033
- ) -> Optional[ResidualEvaluator]:
+ ) -> ResidualEvaluator | None:
2034
"""Retrieve cached evaluator if it exists.
2035
2036
Args:
0 commit comments