diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-03-12 13:56:30 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-03-12 13:56:50 -0700 |
| commit | caa3cf245186ab0f6fb33e63a7dd838d834da12e (patch) | |
| tree | bc5742a134ecabf0b9d35cc12b1d6f67defd5da7 /taito/music_diver.py | |
| parent | 5658441ab9b703c95a48e654d41e45cc3a55ffd3 (diff) | |
refactor: move to common NewsSource interface
cleanup imports by defining initaliazers modules and decorator
remove legacy scrapers
remove single factory for sega games (sites don't change that much)
Diffstat (limited to 'taito/music_diver.py')
| -rw-r--r-- | taito/music_diver.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/taito/music_diver.py b/taito/music_diver.py index 5469ad5..efab0b0 100644 --- a/taito/music_diver.py +++ b/taito/music_diver.py @@ -52,6 +52,7 @@ def parse_music_diver_news_json(data_str: str): "headline": post["title"], "content": content, "url": None, - "images": images + "images": images, + "is_ai_summary": False }) return news_posts |
