mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-09 07:48:57 +00:00
List seed setup choices for readability
This commit is contained in:
@@ -624,9 +624,11 @@ class PasswordManager:
|
|||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
choice = input(
|
choice = input(
|
||||||
"Do you want to (1) Paste in an existing seed in full "
|
"Choose an option:\n"
|
||||||
"(2) Enter an existing seed one word at a time or "
|
"1. Paste in an existing seed in full\n"
|
||||||
"(3) Generate a new seed? (1/2/3): "
|
"2. Enter an existing seed one word at a time\n"
|
||||||
|
"3. Generate a new seed\n"
|
||||||
|
"Enter choice (1/2/3): "
|
||||||
).strip()
|
).strip()
|
||||||
if choice == "1":
|
if choice == "1":
|
||||||
fingerprint = self.setup_existing_seed(method="paste")
|
fingerprint = self.setup_existing_seed(method="paste")
|
||||||
@@ -981,9 +983,12 @@ class PasswordManager:
|
|||||||
self.notify("No existing seed found. Let's set up a new one!", level="WARNING")
|
self.notify("No existing seed found. Let's set up a new one!", level="WARNING")
|
||||||
|
|
||||||
choice = input(
|
choice = input(
|
||||||
"Do you want to (1) Paste in an existing seed in full "
|
"Choose an option:\n"
|
||||||
"(2) Enter an existing seed one word at a time, "
|
"1. Paste in an existing seed in full\n"
|
||||||
"(3) Generate a new seed, or (4) Restore from Nostr? (1/2/3/4): "
|
"2. Enter an existing seed one word at a time\n"
|
||||||
|
"3. Generate a new seed\n"
|
||||||
|
"4. Restore from Nostr\n"
|
||||||
|
"Enter choice (1/2/3/4): "
|
||||||
).strip()
|
).strip()
|
||||||
|
|
||||||
if choice == "1":
|
if choice == "1":
|
||||||
|
Reference in New Issue
Block a user