From 612930411aeb6b921fff11cab8951839cf6bb4ed Mon Sep 17 00:00:00 2001 From: "Tanner Collin (aider)" Date: Tue, 3 Jun 2025 10:56:19 -0600 Subject: [PATCH] chore: Limit pretty print to first article --- swap_guids.py | 1 + 1 file changed, 1 insertion(+) diff --git a/swap_guids.py b/swap_guids.py index da5f5f5..1c3236a 100644 --- a/swap_guids.py +++ b/swap_guids.py @@ -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():