{ "message": "Error : An error occurred: 'str' object does not support item assignment." } #7197
Answered
by
mzamini92
levalencia
asked this question in
Q&A
-
I have a blob storage account where I dropped a single file.
I debugged this code line by line and all variables are setup correctly and the exception is only thrown until from_texts method. However I get this error:
What am I missing? |
Beta Was this translation helpful? Give feedback.
Answered by
mzamini92
Jul 6, 2023
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
levalencia
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TypeError
means that you are trying to assign a value to an object that does not support item assignment. I guess you need to change the way you are assigning the value of metadatas to texts by using a list comprehension.