Skip to content

Commit

Permalink
FIX typo in variables sent to function
Browse files Browse the repository at this point in the history
  • Loading branch information
dantegd committed Oct 3, 2024
1 parent 8eaef40 commit 39bc5f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cuml/cuml/model_selection/_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,10 +406,10 @@ def _process_df_objs(
return df_train, df_test

X_train, X_test = _process_df_objs(
X, x_type, X_train, X_test, train_indices
X, x_type, X_train, X_test, train_indices, test_indices
)
y_train, y_test = _process_df_objs(
y, y_type, y_train, y_test, test_indices
y, y_type, y_train, y_test, train_indices, test_indices
)

else:
Expand Down

0 comments on commit 39bc5f9

Please sign in to comment.