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
Yandex Translator translate method returns a list, not a str.
What I Did
To fix it change return statement on line 142 in current version from return response["text"] to return response["text"][0] in file $DIRECTORY/deep_translator/yandex.py
The text was updated successfully, but these errors were encountered:
Description
Yandex Translator translate method returns a list, not a str.
What I Did
To fix it change return statement on line 142 in current version from
return response["text"]
toreturn response["text"][0]
in file$DIRECTORY/deep_translator/yandex.py
The text was updated successfully, but these errors were encountered: