Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoryKimball committed Oct 11, 2022
1 parent b413523 commit b80105b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/cudf/benchmarks/API/bench_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ def bench_merge(benchmark, dataframe, num_key_cols):
[
lambda: range(50),
lambda: {f"{string.ascii_lowercase[i]}": range(50) for i in range(10)},
lambda: cudf.DataFrame({f"{string.ascii_lowercase[i]}": range(50) for i in range(10)}),
lambda: cudf.DataFrame(
{f"{string.ascii_lowercase[i]}": range(50) for i in range(10)}
),
lambda: cudf.Series(range(50)),
],
)
Expand Down

0 comments on commit b80105b

Please sign in to comment.