Skip to content

Commit c1bac3f

Browse files
committed
Standardize to rstring
1 parent 6743b9e commit c1bac3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parsnip/parsnip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ def __repr__(self):
893893
r"("
894894
r"\;[^\;]*\;|" # Non-semicolon data bracketed by semicolons
895895
r"\'(?:(?:\\|O|d)'|[^'])*\'|" # Data with non-escaped single quotes
896-
'"[^"]*"|' # Data with non-escaled double quotes
896+
r"\"[^\"]*\"|" # Data with double quotes
897897
r"[^\'\"\;\s]*" # Additional non-bracketed data
898898
r")[\s]*"
899899
),

0 commit comments

Comments
 (0)