Skip to content

Commit 45865d3

Browse files
committed
fixed
1 parent 5526526 commit 45865d3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pandas/_libs/lib.pyx

+2-3
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@ def is_scalar(val: object) -> bint:
112112

113113
Parameters
114114
----------
115-
val : input argument of any type
116-
115+
val : input argument of any type
117116
This includes:
118117
- numpy array scalar (e.g. np.int64)
119118
- Python builtin numerics
@@ -170,7 +169,7 @@ def is_scalar(val: object) -> bint:
170169
or util.is_period_object(val)
171170
or is_decimal(val)
172171
or is_interval(val)
173-
or util.is_offset_object(val)
172+
or util.is_offset_object(val))
174173

175174
def item_from_zerodim(val: object) -> object:
176175
"""

0 commit comments

Comments
 (0)