Decrease the amount of color

This commit is contained in:
Ivan Habunek 2023-06-22 11:33:07 +02:00
parent 01afbe1f2f
commit 7b08e39f00
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
2 changed files with 2 additions and 3 deletions

View File

@ -336,9 +336,8 @@ def logout(app, user, args):
def activate(app, user, args):
if not args.account:
print_out("<green>Specify one of the following user accounts to activate:</green>\n")
print_out("Specify one of the following user accounts to activate:\n")
print_user_list(config.get_user_list())
print_out("\n")
return
user = config.load_user(args.account, throw=True)

View File

@ -205,7 +205,7 @@ def print_acct_list(accounts):
def print_user_list(users):
for user in users:
print_out(f"<green>{user}</green>")
print_out(f"* {user}")
def print_tag_list(tags):