We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92c79b3 commit 81cd9aaCopy full SHA for 81cd9aa
1 file changed
parsers/parser.py
@@ -52,10 +52,10 @@ def split_by_commas(string):
52
53
# characters which open a section inside which commas are not separators between different
54
# arguments
55
- open_quotes = '"\'<({'
+ open_quotes = '"\'<({['
56
# characters which close the section. The position of the character here should match the
57
# opening indicator in `open_quotes`
58
- close_quotes = '"\'>)}'
+ close_quotes = '"\'>)}]'
59
60
matching_quote = ''
61
inside_quotes = False
0 commit comments