From c2c553fb051e165c07a47088eb77449629934e98 Mon Sep 17 00:00:00 2001 From: Jared Ucherek <24571854+jareducherek@users.noreply.github.com> Date: Thu, 25 Jul 2019 14:38:34 +0000 Subject: [PATCH] small bugfix changed to_list to tolist --- pybench/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pybench/utils.py b/pybench/utils.py index 53eeef8..b665455 100644 --- a/pybench/utils.py +++ b/pybench/utils.py @@ -197,7 +197,7 @@ def split_params_list(df, params_name, columns=None): >>> ["params.shape.0", "params.shape.1"]) >>> split_params_list(df, "params.shape", ["shape0", "shape1"]) """ - lst = df[params_name].to_list() + lst = df[params_name].tolist() lst = [[l] if not isinstance(l, list) else l for l in lst] ncols = max([len(l) for l in lst]) if columns is None: