Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions parsers/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ def split_by_commas(string):

# characters which open a section inside which commas are not separators between different
# arguments
open_quotes = '"\'<({'
open_quotes = '"\'<({['
# characters which close the section. The position of the character here should match the
# opening indicator in `open_quotes`
close_quotes = '"\'>)}'
close_quotes = '"\'>)}]'

matching_quote = ''
inside_quotes = False
Expand Down