Skip to content

Commit

Permalink
Merge pull request #980 from ToFuProject/Issue978_Error2
Browse files Browse the repository at this point in the history
[#978] Fixed
  • Loading branch information
Didou09 authored Oct 26, 2024
2 parents b816aff + c88fec4 commit 7042897
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 7042897

Please sign in to comment.