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
replace string at line 96
text = text[text.index(']'):].replace("}","").replace("]","")
to this construction
text = text[text.index(']'):].replace("}","").replace("]","") if text.find(']') != -1 else text
I get an error telling: ValueError: substring not found
how can i fix this error?
The text was updated successfully, but these errors were encountered: