Skip to content

Commit 60bb9da

Browse files
committed
Fixed typo bug, duplicate colon
1 parent 8c75d94 commit 60bb9da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/lib.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1114,7 +1114,7 @@ def convert_json_to_lines(object arr):
11141114
length = narr.shape[0]
11151115
for i in range(length):
11161116
v = narr[i]
1117-
if v == quote and i > 0 and not is_escaping::
1117+
if v == quote and i > 0 and not is_escaping:
11181118
in_quotes = ~in_quotes
11191119
if v == backslash or is_escaping:
11201120
is_escaping = ~is_escaping

0 commit comments

Comments
 (0)