From 4c521017daa7afbf0d3bab711f109b07531c5331 Mon Sep 17 00:00:00 2001 From: galipremsagar Date: Wed, 9 Mar 2022 07:47:18 -0800 Subject: [PATCH] fix style --- python/cudf/cudf/core/frame.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/cudf/cudf/core/frame.py b/python/cudf/cudf/core/frame.py index 02a93b3fcf1..6d5a3c14674 100644 --- a/python/cudf/cudf/core/frame.py +++ b/python/cudf/cudf/core/frame.py @@ -638,7 +638,6 @@ def _as_column(self): return self._data[None].copy(deep=False) - @property def values(self): """ @@ -3339,7 +3338,6 @@ def _is_sorted(self, ascending=None, null_position=None): self, ascending=ascending, null_position=null_position ) - @_cudf_nvtx_annotate def _split(self, splits): """Split a frame with split points in ``splits``. Returns a list of @@ -3355,7 +3353,6 @@ def _split(self, splits): for split_idx in range(len(splits) + 1) ] - @_cudf_nvtx_annotate def _encode(self): data, index, indices = libcudf.transform.table_encode(self)