Skip to content

Commit

Permalink
Make SingleColumnFrame._column not settable
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Apr 12, 2024
1 parent f5df665 commit 1359217
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions python/cudf/cudf/core/single_column_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1359217

Please sign in to comment.