Skip to content

Commit

Permalink
Fix ensemble colors in relperm (#1317)
Browse files Browse the repository at this point in the history
  • Loading branch information
HansKallekleiv authored Feb 7, 2025
1 parent 77366eb commit 51acd9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webviz_subsurface/plugins/_relative_permeability.py
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ def p90(x):

traces = []
for ens_no, (ens, ens_df) in enumerate(
df[["ENSEMBLE", "REAL", "SATNUM", sataxis] + curves].groupby(["ENSEMBLE"])
df[["ENSEMBLE", "REAL", "SATNUM", sataxis] + curves].groupby("ENSEMBLE")
):
for satnum_no, (satnum, satnum_df) in enumerate(
ens_df[["REAL", "SATNUM", sataxis] + curves].groupby("SATNUM")
Expand Down

0 comments on commit 51acd9c

Please sign in to comment.