Skip to content

Commit

Permalink
Show more info for experiment observations
Browse files Browse the repository at this point in the history
  • Loading branch information
Yngve S. Kristiansen authored and yngve-sk committed Jun 14, 2024
1 parent 08876f0 commit c24268b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ert/gui/ertwidgets/storage_info_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ def setExperiment(self, experiment: Experiment) -> None:
json.dumps(experiment.parameter_info, indent=4)
)
html = "<table>"
for obs_name in experiment.observations:
html += f"<tr><td>{obs_name}</td></tr>"
for obs_name in experiment.observation_keys:
response, response_type = experiment.response_info_for_obs(obs_name)
html += f"<tr><td>{obs_name} on response key {response} (type: {response_type})</td></tr>"
html += "</table>"
self._observations_text_edit.setHtml(html)

Expand Down

0 comments on commit c24268b

Please sign in to comment.