Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ourownstory committed Sep 13, 2024
1 parent 6efcc03 commit 8b33e96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neuralprophet/data/split.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def _maybe_extend_df(
future_df["ID"] = df_name
df_i = pd.concat([df_i, future_df])
df_i.reset_index(drop=True, inplace=True)
extended_df = pd.concat((extended_df, df_i.copy(deep=True)), ignore_index=True)
extended_df = pd.concat((extended_df, df_i), ignore_index=True)
return extended_df, periods_add


Expand Down

0 comments on commit 8b33e96

Please sign in to comment.