Skip to content

Commit

Permalink
Fixed py36-only syntax [ci skip] (pandas-dev#22167)
Browse files Browse the repository at this point in the history
Closes pandas-dev#22162

[ci skip]
  • Loading branch information
TomAugspurger authored and victor committed Sep 30, 2018
1 parent 188c72c commit fc9de76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asv_bench/benchmarks/reshape.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class GetDummies(object):

def setup(self):
categories = list(string.ascii_letters[:12])
s = pd.Series(np.random.choice(categories, size=1_000_000),
s = pd.Series(np.random.choice(categories, size=1000000),
dtype=pd.api.types.CategoricalDtype(categories))
self.s = s

Expand Down

0 comments on commit fc9de76

Please sign in to comment.