Skip to content

Commit

Permalink
Fix style.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Oct 27, 2022
1 parent a37cd24 commit 05a748a
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions python/cudf/cudf/core/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -6431,6 +6431,7 @@ def pivot(self, index, columns, values=None):
@_cudf_nvtx_annotate
@copy_docstring(reshape.pivot_table)
def pivot_table(
self,
values=None,
index=None,
columns=None,
Expand All @@ -6443,9 +6444,17 @@ def pivot_table(
sort=True,
):
return cudf.core.reshape.pivot_table(
self, values=values, index=index, columns=columns, aggfunc=aggfunc,
fill_value=fill_value, margins=margins, dropna=dropna, margins_name=margins_name,
observed=observed, sort=sort,
self,
values=values,
index=index,
columns=columns,
aggfunc=aggfunc,
fill_value=fill_value,
margins=margins,
dropna=dropna,
margins_name=margins_name,
observed=observed,
sort=sort,
)

@_cudf_nvtx_annotate
Expand Down

0 comments on commit 05a748a

Please sign in to comment.