Skip to content

Commit a2d295b

Browse files
author
Juliya Smith
authored
Correct doc str (#157)
* Correct doc str * Fix doc in other places
1 parent ef4c8d9 commit a2d295b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/code42cli/password.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
def get_stored_password(profile):
10-
"""Gets your currently stored password for the given profile name."""
10+
"""Gets your currently stored password for the given profile."""
1111
service_name = _get_keyring_service_name(profile.name)
1212
return keyring.get_password(service_name, profile.username)
1313

@@ -18,7 +18,7 @@ def get_password_from_prompt():
1818

1919

2020
def set_password(profile, new_password):
21-
"""Sets your password for the given profile name."""
21+
"""Sets your password for the given profile."""
2222
service_name = _get_keyring_service_name(profile.name)
2323
uses_file_storage = keyring.get_keyring().priority < 1
2424
if uses_file_storage and not _prompt_for_alternative_store():
@@ -28,7 +28,7 @@ def set_password(profile, new_password):
2828

2929

3030
def delete_password(profile):
31-
"""Deletes password for the given profile name."""
31+
"""Deletes password for the given profile."""
3232
service_name = _get_keyring_service_name(profile.name)
3333
keyring.delete_password(service_name, profile.username)
3434

0 commit comments

Comments
 (0)