From 52cac5e19e11372960c30d9ba24241694bd11567 Mon Sep 17 00:00:00 2001 From: Eric Meehan Date: Tue, 14 Oct 2025 17:17:29 -0400 Subject: [PATCH] Another small change to cli.py --- cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.py b/cli.py index 6c27bfe..cb5e056 100644 --- a/cli.py +++ b/cli.py @@ -263,7 +263,7 @@ def opt_view_deck(): msg_array[0] = "You have no cards to view"; return; - msg = "Successfully listed deck." + msg = "Successfully listed deck.\n" for card in cards: msg += f"Card ID: {card['cardId']}, Page ID: {card['pageId']}\n" msg_array[0] = msg