fixed merge conflicts

This commit is contained in:
0ceanSlim 2023-11-08 19:38:17 -05:00
commit 08fd5162db

View File

@ -25,7 +25,9 @@ try:
for i, wallet in enumerate(wallet_list): for i, wallet in enumerate(wallet_list):
print(f"{i + 1}. {wallet}") print(f"{i + 1}. {wallet}")
wallet_index = int(input("Enter the number of the wallet to get a new address for: ")) - 1 wallet_index = (
int(input("Enter the number of the wallet to get a new address for: ")) - 1
)
if 0 <= wallet_index < len(wallet_list): if 0 <= wallet_index < len(wallet_list):
wallet_name = wallet_list[wallet_index] wallet_name = wallet_list[wallet_index]