Skip to content

Commit

Permalink
fixed bug when loading BarDataReader.from_dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
Chilipp committed Feb 22, 2019
1 parent 3dfddf1 commit a1af61a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion straditize/binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -3399,7 +3399,7 @@ def v(s):
ret.max_len = ds[v('max_len')].values
if v('full_data_orig') in ds:
ret._full_df_orig = pd.DataFrame(
ds[v('full_data_orig')].values, columns=ds.column.values)
ds[v('full_data_orig')].values, columns=ds[v('column')].values)

return ret

Expand Down

0 comments on commit a1af61a

Please sign in to comment.