Skip to content

Commit

Permalink
lint: flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
paxcema committed Nov 16, 2021
1 parent a15e4a7 commit 5298804
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 @@ -184,7 +184,7 @@ def test_3_time_series_sktime_mixer(self):
df = pd.DataFrame(columns=['Time', target])
df['Time'] = t
df[target] = ts
df[f'{target}_2x'] = 2*ts
df[f'{target}_2x'] = 2 * ts

train = df[:int(len(df) * 0.8)]
test = df[int(len(df) * 0.8):]
Expand Down

0 comments on commit 5298804

Please sign in to comment.