Skip to content

Commit

Permalink
lint: flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
paxcema committed Mar 1, 2023
1 parent 0ce12c1 commit ae18b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightwood/mixer/gluonts.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def _make_initial_ds(self, df=None, phase='predict', groups=None):

df[oby_col_name] = df.index
for col in self.static_features_cat:
df[col] = self.static_features_cat_encoders[col].transform(df[col].values.reshape(-1,1))
df[col] = self.static_features_cat_encoders[col].transform(df[col].values.reshape(-1, 1))

ds = PandasDataset.from_long_dataframe(
df,
Expand Down

0 comments on commit ae18b5d

Please sign in to comment.