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 dd534a8 commit 59674ecCopy full SHA for 59674ec
pyiceberg/expressions/__init__.py
@@ -253,7 +253,7 @@ def as_bound(self) -> Type[BoundReference[L]]:
253
class And(IcebergBaseModel, BooleanExpression):
254
"""AND operation expression - logical conjunction."""
255
256
- model_config = ConfigDict(arbitrary_types_allowed=True)
+ model_config = ConfigDict(arbitrary_types_allowed=True, frozen=False)
257
258
type: TypingLiteral["and"] = Field(default="and", alias="type")
259
left: BooleanExpression
0 commit comments