Skip to content

Commit

Permalink
[#973] Fixed #972
Browse files Browse the repository at this point in the history
  • Loading branch information
dvezinet committed Sep 12, 2024
1 parent d3b1234 commit 3ffe96a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tofu/data/_class8_plot_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,10 @@ def _check(

lok_vos = [
k0 for k0, v0 in coll.dobj.get('diagnostic', {}).items()
if all([v1.get('dvos') is not None for v1 in v0['doptics'].values()])
if all([
v1.get('dvos', {}).get('keym') is not None
for v1 in v0['doptics'].values()
])
]
lok = [
k0 for k0 in coll.dobj.get('diagnostic', {}).keys()
Expand Down

0 comments on commit 3ffe96a

Please sign in to comment.