diff --git a/pyiceberg/transforms.py b/pyiceberg/transforms.py index cd0d7cebcb..5e0027a829 100644 --- a/pyiceberg/transforms.py +++ b/pyiceberg/transforms.py @@ -719,7 +719,6 @@ def transform(self, source: IcebergType) -> Callable[[S | None], S | None]: return lambda v: v def can_transform(self, source: IcebergType) -> bool: - # TODO: disallow VariantType when PyIceberg supports it. return source.is_primitive and not isinstance(source, (GeographyType, GeometryType)) def result_type(self, source: IcebergType) -> IcebergType: