File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 77
88
99def 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
2020def 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
3030def 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
You can’t perform that action at this time.
0 commit comments