Skip to content

Commit

Permalink
Fix missed argument order swap in replace.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Apr 21, 2022
1 parent 8b217c6 commit 32507a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -3657,8 +3657,8 @@ def _get_replacement_values_for_columns(
col: [value]
if _is_non_decimal_numeric_dtype(columns_dtype_map[col])
else full(
len(to_replace),
value,
(len(to_replace),),
cudf.dtype(type(value)),
)
for col in columns_dtype_map
Expand Down

0 comments on commit 32507a6

Please sign in to comment.