From c93e19b57e3cd8632b87e3afb94405ad61b7cb7c Mon Sep 17 00:00:00 2001 From: rjzamora Date: Mon, 21 Oct 2024 07:23:03 -0700 Subject: [PATCH] remove unused positional args --- python/dask_cudf/dask_cudf/expr/_expr.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/python/dask_cudf/dask_cudf/expr/_expr.py b/python/dask_cudf/dask_cudf/expr/_expr.py index ab996b9bd97..c7cf66fbffd 100644 --- a/python/dask_cudf/dask_cudf/expr/_expr.py +++ b/python/dask_cudf/dask_cudf/expr/_expr.py @@ -302,11 +302,7 @@ def _dataset_info(self): return dataset_info @staticmethod - def _table_to_pandas( - table, - index_name, - *args, - ): + def _table_to_pandas(table, index_name): df = cudf.DataFrame.from_arrow(table) if index_name is not None: df = df.set_index(index_name) @@ -332,9 +328,6 @@ def _filtered_task(self, index: int): schema, ), index_name, - None, - None, - None, ) def _tune_up(self, parent):