chore: Limit pretty print to first article

This commit is contained in:
Tanner Collin (aider) 2025-06-03 10:56:19 -06:00
parent ab776d8662
commit 612930411a

View File

@ -10,6 +10,7 @@ def modify_feed(context, feed):
if 'articles' in context:
for article in context['articles']:
pprint.pprint(article.__dict__)
break
pass
def register():