Skip to content

Commit

Permalink
[#978] Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
dvezinet committed Oct 26, 2024
1 parent b816aff commit c88fec4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tofu/data/_class8_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ def _plot_diagnostic_check(
)

# extract
ddata, dref, units, static, daxis = out
if out is None:
ddata, dref, units, static, daxis = {}, {}, None, True, None
else:
ddata, dref, units, static, daxis = out

refz = None
if static is False:
Expand Down

0 comments on commit c88fec4

Please sign in to comment.