You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should be re.compile(r'"(.*)"')
because with r'...', backslashes will be remained
so the findall should return [],The fix should be to delete the two backslashes.
The text was updated successfully, but these errors were encountered:
should be re.compile(r'"(.*)"')
because with r'...', backslashes will be remained
so the findall should return [],The fix should be to delete the two backslashes.
The text was updated successfully, but these errors were encountered: