Skip to content

Commit

Permalink
Remove record data index sorting not really needed and also prone to …
Browse files Browse the repository at this point in the history
…issues when sorting ints that have been converted to strings
  • Loading branch information
DanSava committed Dec 9, 2021
1 parent 840e0a7 commit 27495b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webviz_ert/data_loader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def get_ensemble_record_data(
params={"realization_index": rel_idx},
)
stream = io.BytesIO(resp.content)
df = pd.read_parquet(stream).transpose().sort_index()
df = pd.read_parquet(stream).transpose()
df.columns = [rel_idx]
dfs.append(df)

Expand Down

0 comments on commit 27495b9

Please sign in to comment.