Skip to content

Commit

Permalink
Revert "Fix basic report script for empty volume"
Browse files Browse the repository at this point in the history
This reverts commit 4dff546.
  • Loading branch information
mzur committed Jan 20, 2025
1 parent 4dff546 commit 4c59897
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions resources/scripts/reports/basic_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,7 @@ def TitleSlide(text):
for path in data_csvs:
f = open(path, 'r')
data_csv = csv.reader(f)
try:
plot_title = next(data_csv)
except StopIteration:
continue
plot_title = next(data_csv)
rows = np.array(list(data_csv), dtype=str)
f.close()
if rows.shape[0] == 0:
Expand Down

0 comments on commit 4c59897

Please sign in to comment.