Skip to content

Commit add0d71

Browse files
committed
Fix merge conflict
1 parent 7afcc7f commit add0d71

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

asv_bench/benchmarks/ctors.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import numpy as np
22
import pandas.util.testing as tm
3-
from pandas import (DataFrame, Series, Index, DatetimeIndex, Timestamp,
4-
MultiIndex)
3+
from pandas import Series, Index, DatetimeIndex, Timestamp, MultiIndex
54

6-
from .pandas_vb_common import setup # noqa
5+
from .pandas_vb_common import setup # noqa
76

87

98
class SeriesConstructors(object):
@@ -23,7 +22,6 @@ class SeriesConstructors(object):
2322

2423
def setup(self, data_fmt, with_index):
2524
N = 10**4
26-
np.random.seed(1234)
2725
arr = np.random.randn(N)
2826
self.data = data_fmt(arr)
2927
self.index = np.arange(N) if with_index else None

0 commit comments

Comments
 (0)