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.