Skip to content

Commit

Permalink
STY: Fix trailing comma style
Browse files Browse the repository at this point in the history
  • Loading branch information
seberg committed Jul 12, 2024
1 parent ddc91b7 commit d0dee3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/tests/test_binops.py
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ def test_operator_func_series_and_scalar(
)
pdf_series_result = getattr(pdf_series, func)(
np.array(scalar)[()] if use_cudf_scalar else scalar,
fill_value=fill_value
fill_value=fill_value,
)

assert_eq(pdf_series_result, gdf_series_result)
Expand Down

0 comments on commit d0dee3e

Please sign in to comment.