Skip to content

Commit

Permalink
Updated Model in the table view to be a mini table for better visuali…
Browse files Browse the repository at this point in the history
…zation of method/basis.
  • Loading branch information
coltonbh committed Sep 30, 2024
1 parent d5447ce commit 83d31e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Changed

- Attributes on models that are not explicitly set (i.e., values set to their default value) will not be serialized and saved. This behavior can be modified by passing `exclude_unset=True` to `.save(...)`.
- `Model` in the table view is now a mini table to better visualize method and basis.

## [0.11.10] - 2024-09-23

Expand Down
2 changes: 1 addition & 1 deletion qcio/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def generate_output_table(*prog_outputs: ProgramOutput) -> str:
else "No timing data"}</td>
<td>{po.input_data.calctype.name}</td>
<td>{f"{po.provenance.program} {po.provenance.program_version or ''}"}</td>
<td>{po.input_data.model}</td>
<td>{generate_dictionary_string(po.input_data.model.model_dump(exclude=["extras"]))}</td>
<td>{generate_dictionary_string(po.input_data.keywords)}</td>
"""
if po.input_data.files:
Expand Down

0 comments on commit 83d31e6

Please sign in to comment.