aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2026-03-22 22:26:00 -0700
committerPinapelz <yukais@pinapelz.com>2026-03-22 22:26:00 -0700
commit37e0a4e0ce5223800d02479a5119700c8daa45a6 (patch)
treedccdd050872db2a20c0117534579389dbf2ce61b
parentcaa3cf245186ab0f6fb33e63a7dd838d834da12e (diff)
Use empty translation overrides for PolarisChord
-rw-r--r--news_feed.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/news_feed.py b/news_feed.py
index 9bae903..9399b7a 100644
--- a/news_feed.py
+++ b/news_feed.py
@@ -61,14 +61,13 @@ class SoundVoltexSource(NewsSource):
class PolarisChordSource(NewsSource):
def fetch(self, version=None) -> list[dict]:
from bemani.polaris_chord import parse_polaris_chord_news_site
- from bemani.iidx import KEY_TERMS_TL
site_data = download_site_as_html(constants.POLARIS_CHORD_NEWS_SITE)
news_posts = sorted(
parse_polaris_chord_news_site(site_data, constants.POLARIS_CHORD_RECENT_NEWS_LIMIT),
key=lambda x: x['timestamp'],
reverse=True,
)
- return translate.add_translate_text_to_en(news_posts, KEY_TERMS_TL)
+ return translate.add_translate_text_to_en(news_posts, overrides=[])
# ---------------------------------------------------------------------------
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage