chore: Pretty print articles in modify_feed

This commit is contained in:
Tanner Collin (aider) 2025-06-03 10:53:17 -06:00
parent a13bdc1e08
commit d653bc948d

View File

@ -7,6 +7,9 @@ log = logging.getLogger(__name__)
def modify_feed(context, feed):
pprint.pprint(context)
if 'articles' in context:
for article in context['articles']:
pprint.pprint(article)
pass
def register():