Skip to content

Commit

Permalink
Update modin/core/dataframe/pandas/dataframe/dataframe.py
Browse files Browse the repository at this point in the history
Co-authored-by: Dmitry Chigarev <[email protected]>
  • Loading branch information
YarShev and dchigarev authored Mar 28, 2024
1 parent c7bfb24 commit 478f137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modin/core/dataframe/pandas/dataframe/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -3450,7 +3450,7 @@ def broadcast_apply_full_axis(
kw["column_widths"] = [len(new_columns)]
elif axis == 1:
if is_index_materialized and new_partitions.shape[0] == 1:
kw["row_lengths"] = [len(new_columns)]
kw["row_lengths"] = [len(new_index)]
if not keep_partitioning:
if kw["row_lengths"] is None and is_index_materialized:
if axis == 0:
Expand Down

0 comments on commit 478f137

Please sign in to comment.