Skip to content

Commit

Permalink
Update evalml/pipelines/utils.py
Browse files Browse the repository at this point in the history
Co-authored-by: chukarsten <[email protected]>
  • Loading branch information
eccabay and chukarsten authored Jul 26, 2023
1 parent 29eb1f9 commit c7a97e7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions evalml/pipelines/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1385,9 +1385,7 @@ def unstack_multiseries(X, y, series_id, time_index, keep_time_in_index=True):

# Save the time_index for alignment
new_time_index = single_series[time_index]
for column_name in full_dataset.columns:
if column_name in [time_index, series_id]:
continue
for column_name in full_dataset.columns.drop([time_index, series_id]):

Check warning on line 1388 in evalml/pipelines/utils.py

View check run for this annotation

Codecov / codecov/patch

evalml/pipelines/utils.py#L1387-L1388

Added lines #L1387 - L1388 were not covered by tests

new_column = single_series[column_name]
new_column.index = new_time_index
Expand Down

0 comments on commit c7a97e7

Please sign in to comment.