diff --git a/pyiceberg/transforms.py b/pyiceberg/transforms.py index 32a4233c67..7833215d09 100644 --- a/pyiceberg/transforms.py +++ b/pyiceberg/transforms.py @@ -234,8 +234,8 @@ class BucketTransform(Transform[S, int]): _num_buckets: PositiveInt = PrivateAttr() def __init__(self, num_buckets: int, **data: Any) -> None: - self._num_buckets = num_buckets super().__init__(f"bucket[{num_buckets}]", **data) + self._num_buckets = num_buckets @property def num_buckets(self) -> int: