mangoplot: look for header further down than 4 rows

Co-authored-by: Adel KARA SLIMANE <adel.ks@zegrapher.com>
pull/1369/head
flightlessmango 2 months ago
parent 8a31b96766
commit 6c665653ba

@ -195,8 +195,9 @@ class BenchmarkFile:
found_fps_column = False
for row_number, row_content in enumerate(reader):
if row_number > 4:
# if we're past the 4th row, break the loop
if row_number > 100:
# did not find the row that starts with the
# 'fps' column up until here. give up.
break
if "fps" in row_content:

Loading…
Cancel
Save