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
Not sure if this is a bug or feature request, I do enjoy that I can concentrate your Objects like strings. Now I wanted to concentrate a list, but ran into the following:
" ".join(storedSentences)
Getting:
TypeError: sequence item 0: expected str instance, Sentence found
Unfortunately, the other way does not work either:
Sentence(" ").join(storedSentences)
TypeError: sequence item 0: expected str instance, Sentence found
Maybe I am doing it wrong?
PS: Great library! Especially the TextBlobs Are Like Python Strings! makes things really easy, thanks for implementing that :)
The text was updated successfully, but these errors were encountered:
Not sure if this is a bug or feature request, I do enjoy that I can concentrate your Objects like strings. Now I wanted to concentrate a list, but ran into the following:
Getting:
TypeError: sequence item 0: expected str instance, Sentence found
Unfortunately, the other way does not work either:
TypeError: sequence item 0: expected str instance, Sentence found
Maybe I am doing it wrong?
PS: Great library! Especially the TextBlobs Are Like Python Strings! makes things really easy, thanks for implementing that :)
The text was updated successfully, but these errors were encountered: