Skip to content

Commit

Permalink
bugfix sensrun check
Browse files Browse the repository at this point in the history
  • Loading branch information
tnatt committed Sep 27, 2021
1 parent 0a4d12e commit 442171b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webviz_subsurface/_models/parameter_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def _check_if_sensitivity_run(self) -> bool:

return not all(
(
(df["SENSNAME"].nunique() == 1 and df["SENSTYPE"].unique() != ["mc"])
(df["SENSNAME"].nunique() == 1 and df["SENSTYPE"].unique() == ["mc"])
for _, df in self.dataframe.groupby("ENSEMBLE")
)
)

0 comments on commit 442171b

Please sign in to comment.