Skip to content

Commit a6b3962

Browse files
committed
Fix is_float_array stub arguments inconsistent
1 parent 3f1a734 commit a6b3962

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/lib.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def is_time_array(values: np.ndarray, skipna: bool = ...): ...
6060
def is_date_array(values: np.ndarray, skipna: bool = ...): ...
6161
def is_datetime_array(values: np.ndarray, skipna: bool = ...): ...
6262
def is_string_array(values: np.ndarray, skipna: bool = ...): ...
63-
def is_float_array(values: np.ndarray): ...
63+
def is_float_array(values: np.ndarray, skipna: bool = ...): ...
6464
def is_integer_array(values: np.ndarray, skipna: bool = ...): ...
6565
def is_bool_array(values: np.ndarray, skipna: bool = ...): ...
6666
def fast_multiget(

0 commit comments

Comments
 (0)