File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -346,7 +346,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
346
346
-i " pandas.api.types.is_period_dtype SA01" \
347
347
-i " pandas.api.types.is_re PR07,SA01" \
348
348
-i " pandas.api.types.is_re_compilable PR07,SA01" \
349
- -i " pandas.api.types.is_scalar SA01" \
350
349
-i " pandas.api.types.is_signed_integer_dtype SA01" \
351
350
-i " pandas.api.types.is_sparse SA01" \
352
351
-i " pandas.api.types.is_string_dtype SA01" \
Original file line number Diff line number Diff line change @@ -184,6 +184,13 @@ def is_scalar(val: object) -> bool:
184
184
bool
185
185
Return True if given object is scalar.
186
186
187
+ See Also
188
+ --------
189
+ api.types.is_list_like : Check if the input is list-like.
190
+ api.types.is_integer : Check if the input is an integer.
191
+ api.types.is_float : Check if the input is a float.
192
+ api.types.is_bool : Check if the input is a boolean.
193
+
187
194
Examples
188
195
--------
189
196
>>> import datetime
You can’t perform that action at this time.
0 commit comments