Skip to content

Commit 717435a

Browse files
committed
print header before asking for password from user
1 parent f3776f7 commit 717435a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

util/bw_cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,11 @@ def unlock(self):
4747
unlocks the local bitwarden vault, and returns session token
4848
TODO: check local env vars for password or api key
4949
"""
50+
header('Unlocking the Bitwarden vault...')
51+
5052
password_prompt = 'Enter your Bitwarden Password: '
5153
password = getpass(prompt=password_prompt, stream=None)
5254

53-
header('Unlocking the Bitwarden vault...')
5455
self.session = subproc([f"bw unlock {password} --raw"], False, True)
5556

5657
def lock(self):

0 commit comments

Comments
 (0)