Skip to content

Commit

Permalink
lint: flake8:
Browse files Browse the repository at this point in the history
  • Loading branch information
paxcema committed May 15, 2024
1 parent f93af6a commit c3e0ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/advanced/test_timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def test_5_time_series_arima_mixer(self):
# test offsets
ps1 = predictor.predict(test[1:]) # one step after latest (inferred)
ps0 = predictor.predict(test) # normal
psm1 = predictor.predict(df[-(horizon+1):]) # one step before latest
psm1 = predictor.predict(df[-(horizon + 1):]) # one step before latest
times_1 = psm1['order_Time'].tolist()[0]
values_1 = psm1['prediction'].tolist()[0]
times0 = ps0['order_Time'].tolist()[0]
Expand Down

0 comments on commit c3e0ce7

Please sign in to comment.