Skip to content

Commit a293b5f

Browse files
committed
remove special arg
1 parent e196e06 commit a293b5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/algorithms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def _get_hashtable_algo(values: np.ndarray):
285285
return htable, values
286286

287287

288-
def _get_values_for_rank(values: ArrayLike, special: bool = True) -> np.ndarray:
288+
def _get_values_for_rank(values: ArrayLike) -> np.ndarray:
289289

290290
values = _ensure_data(values)
291291
if values.dtype.kind in ["i", "u", "f"]:
@@ -296,7 +296,7 @@ def _get_values_for_rank(values: ArrayLike, special: bool = True) -> np.ndarray:
296296

297297

298298
def get_data_algo(values: ArrayLike):
299-
values = _get_values_for_rank(values, False)
299+
values = _get_values_for_rank(values)
300300

301301
ndtype = _check_object_for_strings(values)
302302
htable = _hashtables.get(ndtype, _hashtables["object"])

0 commit comments

Comments
 (0)