Skip to content

Commit fc9de76

Browse files
TomAugspurgervictor
authored and
victor
committed
Fixed py36-only syntax [ci skip] (pandas-dev#22167)
Closes pandas-dev#22162 [ci skip]
1 parent 188c72c commit fc9de76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asv_bench/benchmarks/reshape.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class GetDummies(object):
141141

142142
def setup(self):
143143
categories = list(string.ascii_letters[:12])
144-
s = pd.Series(np.random.choice(categories, size=1_000_000),
144+
s = pd.Series(np.random.choice(categories, size=1000000),
145145
dtype=pd.api.types.CategoricalDtype(categories))
146146
self.s = s
147147

0 commit comments

Comments
 (0)