removing positional args for func
Browse files- pipeline/news_ingest.py +1 -1
pipeline/news_ingest.py
CHANGED
@@ -142,7 +142,7 @@ async def main():
|
|
142 |
get_or_build_index_from_docs(documents)
|
143 |
|
144 |
print("⚡ Generating daily feed...")
|
145 |
-
await generate_and_cache_daily_feed(
|
146 |
|
147 |
print(f"✅ Indexed, headlines generated, and stored at: {INDEX_DIR}")
|
148 |
|
|
|
142 |
get_or_build_index_from_docs(documents)
|
143 |
|
144 |
print("⚡ Generating daily feed...")
|
145 |
+
await generate_and_cache_daily_feed()
|
146 |
|
147 |
print(f"✅ Indexed, headlines generated, and stored at: {INDEX_DIR}")
|
148 |
|