Skip to content

Commit 5ed46a8

Browse files
AniketsyFokko
andauthored
Update pyiceberg/expressions/__init__.py
Co-authored-by: Fokko Driesprong <fokko@apache.org>
1 parent 4392e29 commit 5ed46a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyiceberg/expressions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ def as_bound(self) -> Type[BoundNotNaN[L]]:
564564
class SetPredicate(UnboundPredicate[L], IcebergBaseModel, ABC):
565565
type: str = Field(default="in", alias="type")
566566
term: str
567-
value: list[Any]
567+
literals: Set[Literal[L]] = Field(alias="items")
568568

569569
def __init__(self, term: Union[str, UnboundTerm[Any]], literals: Union[Iterable[L], Iterable[Literal[L]]]):
570570
# Convert term to string for serialization

0 commit comments

Comments
 (0)