aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/serd_bench.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/serd_bench.py b/scripts/serd_bench.py
index 54ec3f29..ae2f0f66 100755
--- a/scripts/serd_bench.py
+++ b/scripts/serd_bench.py
@@ -123,7 +123,7 @@ def plot(in_file, out_filename, x_label, y_label, y_max=None):
actual_y_max = 0.0
for i, y in enumerate(cols[1::]):
y_floats = list(map(float, y))
- actual_y_max = max(actual_y_max, max(y_floats))
+ actual_y_max = max(actual_y_max, y_floats)
ax.plot(
x,
y_floats,