Skip to content

Fix seq_parser() bug

Latest
Compare
Choose a tag to compare
@RohanArepally RohanArepally released this 25 Sep 22:03

Fixes bug with def seq_parser(cls, raw: str), which was incorrectly parsing strings from an array or a tuple.

Previously (1, 2, '(),') would break the parsing logic since it interpreted (), as a tuple. Now we ensure any character within a single quote is counted as a character.