We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0041050 commit 3f5082cCopy full SHA for 3f5082c
keyring/cli.py
@@ -137,7 +137,7 @@ def _emit_json(self, credential: credentials.Credential):
137
)
138
139
def _emit_plain(self, credential: credentials.Credential):
140
- if credential.username:
+ if credential.username and not isinstance(credential, credentials.AnonymousCredential):
141
print(credential.username)
142
print(credential.password)
143
0 commit comments