Another small change to cli.py

This commit is contained in:
Eric Meehan 2025-10-14 17:17:29 -04:00
parent c945c8e229
commit 52cac5e19e

2
cli.py
View File

@ -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