Skip to content

Commit 567e7bb

Browse files
committed
pep8 problems
1 parent 9f5524d commit 567e7bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

asv_bench/benchmarks/series_methods.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ def time_isin(self, dtypes):
4141
class IsInFloat64(object):
4242

4343
def setup(self):
44-
self.small = Series(np.random.randint(1, 10, 10)).astype(dtype=np.float64)
44+
self.small = Series([1, 2], dtype=np.float64)
4545
self.many_different_values = np.arange(10**6, dtype=np.float64)
46-
self.few_different_values = np.zeros(10**7, dtype=np.float64)
46+
self.few_different_values = np.zeros(10**7, dtype=np.float64)
4747
self.only_nans_values = np.full(10**7, np.nan, dtype=np.float64)
4848

4949
def time_isin_many_different(self):

0 commit comments

Comments
 (0)