Skip to content

Commit

Permalink
missing iloc usage (Bears-R-Us#3243)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-neth authored May 29, 2024
1 parent 51e67ae commit 8cc410c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arkouda/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -6274,7 +6274,7 @@ def _inner_join_merge(
new_dict[new_col] = left[col].iloc[left_inds]
for col in right_cols:
new_col = col + right_suffix if col in col_intersect else col
new_dict[new_col] = right[col][right_inds]
new_dict[new_col] = right[col].iloc[right_inds]

ret_df = DataFrame(new_dict)
if sort is True:
Expand Down

0 comments on commit 8cc410c

Please sign in to comment.