Skip to content

Commit 8634a37

Browse files
author
MomIsBestFriend
committed
1 parent dcd8c38 commit 8634a37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_libs/lib.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ def item_from_zerodim(val: object) -> object:
263263

264264
@cython.wraparound(False)
265265
@cython.boundscheck(False)
266-
def fast_unique_multiple(list arrays, bint sort=True):
266+
def fast_unique_multiple(list arrays, sort: bool = True):
267267
"""
268268
Generate a list of unique values from a list of arrays.
269269
@@ -303,7 +303,7 @@ def fast_unique_multiple(list arrays, bint sort=True):
303303

304304
@cython.wraparound(False)
305305
@cython.boundscheck(False)
306-
def fast_unique_multiple_list(lists: list, bint sort=True) -> list:
306+
def fast_unique_multiple_list(lists: list, sort: bool = True) -> list:
307307
cdef:
308308
list buf
309309
Py_ssize_t k = len(lists)

0 commit comments

Comments
 (0)