Skip to content

Commit 59674ec

Browse files
committed
Make And expression JSON serializable using Pydantic
1 parent dd534a8 commit 59674ec

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
@@ -253,7 +253,7 @@ def as_bound(self) -> Type[BoundReference[L]]:
253253
class And(IcebergBaseModel, BooleanExpression):
254254
"""AND operation expression - logical conjunction."""
255255

256-
model_config = ConfigDict(arbitrary_types_allowed=True)
256+
model_config = ConfigDict(arbitrary_types_allowed=True, frozen=False)
257257

258258
type: TypingLiteral["and"] = Field(default="and", alias="type")
259259
left: BooleanExpression

0 commit comments

Comments
 (0)