Skip to content

Commit

Permalink
Fix typo in CLI creds mode.
Browse files Browse the repository at this point in the history
Closes #681
  • Loading branch information
jaraco committed May 13, 2024
1 parent f98adf3 commit 1ec750d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion keyring/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _emit_plain(self, credential: credentials.Credential):
print(credential.username)
print(credential.password)

def _get_cred(self) -> credentials.Credential | None:
def _get_creds(self) -> credentials.Credential | None:
return get_credential(self.service, self.username) # type: ignore

def _get_password(self) -> credentials.Credential | None:
Expand Down
1 change: 1 addition & 0 deletions newsfragments/681.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix typo in CLI creds mode.

0 comments on commit 1ec750d

Please sign in to comment.