File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
darshan-util/pydarshan/darshan/cli Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -640,11 +640,11 @@ def build_sections(self):
640640 """
641641 self .sections = {}
642642 for fig in self .figures :
643- # skip empty figures
644- if fig . fig_html == None and fig . section_title != "I/O Summary" :
645- # skip empty report sections, except for heatmap data in the
646- # "I/O Summary" section, as these plots contain an important
647- # warning message on how to generate heatmap plots
643+ # skip empty figures that can be generated by report sections
644+ # "Data Access by Category" and "Cross-Module Comparisons"
645+ if ( fig . fig_html == None and
646+ ( fig . section_title == "Data Access by Category" or
647+ fig . section_title == "Cross-Module Comparisons" )):
648648 continue
649649 # if a section title is not already in sections, add
650650 # the section title and a corresponding empty list
You can’t perform that action at this time.
0 commit comments