diff --git a/python/cudf/cudf/core/dataframe.py b/python/cudf/cudf/core/dataframe.py index a3e426ffcf1..d015df2f6ee 100644 --- a/python/cudf/cudf/core/dataframe.py +++ b/python/cudf/cudf/core/dataframe.py @@ -2490,11 +2490,6 @@ def reset_index( inplace=inplace, ) - def take(self, indices, axis=0): - out = super().take(indices) - out.columns = self.columns - return out - @annotate("INSERT", color="green", domain="cudf_python") def insert(self, loc, name, value, nan_as_null=None): """Add a column to DataFrame at the index specified by loc.