From 7c37b9bb3e77842e558ce171dd0916121b475f02 Mon Sep 17 00:00:00 2001 From: crp3844 Date: Wed, 7 Sep 2022 15:06:33 -0400 Subject: [PATCH] added some spacing on the select account to edit/delete --- bitwardenBackup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bitwardenBackup.py b/bitwardenBackup.py index feffb25..09a19fd 100644 --- a/bitwardenBackup.py +++ b/bitwardenBackup.py @@ -312,10 +312,12 @@ def edit_account_details(accounts, email): def select_account(accounts, wording = "edit"): print("Which account would you like to {}:".format(wording)) + print(" ") emails = list(accounts) for i in range(0, len(accounts)): pretty_number = i + 1 print("{}) {}".format(pretty_number, emails[i])) + print(" ") while True: account_to_modify = int(input("Please enter number relating to the account you wish to {}: ".format(wording))) - 1 try: