From 321edeaabe7cb9cf2a9cd17df5294093e201af0a Mon Sep 17 00:00:00 2001 From: verjiniaM <87032309+verjiniaM@users.noreply.github.com> Date: Thu, 15 Aug 2024 15:49:11 +0200 Subject: [PATCH] fixed a typo in bench.py --- benchmark_python/bench.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark_python/bench.py b/benchmark_python/bench.py index ed08722..232cad4 100755 --- a/benchmark_python/bench.py +++ b/benchmark_python/bench.py @@ -38,7 +38,7 @@ def load_data_row(x, time_series): return x def load_data_column(x, time_series): - """Store one time series per raw""" + """Store one time series per column""" for column, ts in enumerate(time_series): x[:, column] = ts return x