Skip to content

Commit

Permalink
remove unused positional args
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed Oct 21, 2024
1 parent 96d122f commit c93e19b
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions python/dask_cudf/dask_cudf/expr/_expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -332,9 +328,6 @@ def _filtered_task(self, index: int):
schema,
),
index_name,
None,
None,
None,
)

def _tune_up(self, parent):
Expand Down

0 comments on commit c93e19b

Please sign in to comment.