We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 971258c commit 8211bd0Copy full SHA for 8211bd0
1 file changed
pyiceberg/expressions/__init__.py
@@ -701,7 +701,7 @@ def __new__( # type: ignore # pylint: disable=W0221
701
702
def __invert__(self) -> NotIn[L]:
703
"""Transform the Expression into its negated version."""
704
- return NotIn[L](self.term, self.literals)
+ return NotIn[L](self.term, self._literals)
705
706
@property
707
def as_bound(self) -> Type[BoundIn[L]]:
0 commit comments