Skip to content

Commit 2985b9d

Browse files
author
Kenil Mehta
committed
precommit check changes
1 parent 7f20a6c commit 2985b9d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

asv_bench/benchmarks/frame_methods.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,13 +562,15 @@ def setup(self):
562562
def time_frame_nunique(self):
563563
self.df.nunique()
564564

565+
565566
class SeriesNuniqueWithNan:
566567
def setup(self):
567568
self.ser = Series(100000 * (100 * [np.nan] + list(range(100)))).astype(float)
568569

569570
def time_series_nunique_nan(self):
570571
self.ser.nunique()
571572

573+
572574
class Duplicated:
573575
def setup(self):
574576
n = 1 << 20

0 commit comments

Comments
 (0)