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
To solve this issue, I copied the "clean_data" function and modified it to include "encoding="utf8"" in all "open" commands in the function, like the following
with open(file_path, encoding="utf-8", mode="r") as f:
and this modification solved the issue for me.
I am not sure this solution would apply to others, but I wanted to let you know about the possibility of this issue
Thanks a lot for creating this much-needed tool
The text was updated successfully, but these errors were encountered:
I tried to use "clean_data" from Tnkeeh and I kept getting this error (even when I changed the Arabic text):
To solve this issue, I copied the "clean_data" function and modified it to include "encoding="utf8"" in all "open" commands in the function, like the following
with open(file_path, encoding="utf-8", mode="r") as f:
and this modification solved the issue for me.
I am not sure this solution would apply to others, but I wanted to let you know about the possibility of this issue
Thanks a lot for creating this much-needed tool
The text was updated successfully, but these errors were encountered: