Skip to content

Commit 05a41bc

Browse files
authored
DOC: extra closing parens make example invalid. (#35316)
1 parent 6509028 commit 05a41bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/lib.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ def is_list_like(obj: object, allow_sets: bool = True) -> bool:
983983
False
984984
>>> is_list_like(np.array([2]))
985985
True
986-
>>> is_list_like(np.array(2)))
986+
>>> is_list_like(np.array(2))
987987
False
988988
"""
989989
return c_is_list_like(obj, allow_sets)

0 commit comments

Comments
 (0)