Skip to content

Commit 0bfe20b

Browse files
committed
benchmarks wrong
1 parent 473369d commit 0bfe20b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asv_bench/benchmarks/reshape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ class Explode(object):
246246

247247
def setup(self, n_rows, max_list_length):
248248

249-
data = [[np.arange(np.random.randint(max_list_length)) for _ in range(n_rows)]]
249+
data = [np.arange(np.random.randint(max_list_length)) for _ in range(n_rows)]
250250
self.series = pd.Series(data)
251251

252252
def time_explode(self, n_rows, max_list_length):

0 commit comments

Comments
 (0)