We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddbc888 commit d1c48b8Copy full SHA for d1c48b8
pythonkr_backend/curation/utils_trans.py
@@ -43,7 +43,7 @@ def translate_rssitem(rss_item_id: int):
43
if not rss_item.crawled_content:
44
raise ValueError("RSS item has no crawled content")
45
46
- with rss_item.crawled_content.open('r', encoding='utf-8') as f:
+ with rss_item.crawled_content.open('r') as f:
47
content = f.read()
48
49
# Create AI agent for translation
0 commit comments