From 1359217a78adedae467068de2c48f92a4acf2212 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Fri, 12 Apr 2024 16:35:26 -0700 Subject: [PATCH] Make SingleColumnFrame._column not settable --- python/cudf/cudf/core/single_column_frame.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/python/cudf/cudf/core/single_column_frame.py b/python/cudf/cudf/core/single_column_frame.py index 19dde2e51b9..829790007c9 100644 --- a/python/cudf/cudf/core/single_column_frame.py +++ b/python/cudf/cudf/core/single_column_frame.py @@ -103,11 +103,6 @@ def _num_columns(self): def _column(self): return self._data[self.name] - @_column.setter # type: ignore - @_cudf_nvtx_annotate - def _column(self, value): - self._data[self.name] = value - @property # type: ignore @_cudf_nvtx_annotate def values(self): # noqa: D102