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 c1cbe55 commit ddfeff2Copy full SHA for ddfeff2
src/huggingface_hub/cli/auth.py
@@ -200,7 +200,7 @@ def run(self):
200
exit()
201
try:
202
info = self._api.whoami(token)
203
- print(info["name"])
+ print(ANSI.bold("user: "), info["name"])
204
orgs = [org["name"] for org in info["orgs"]]
205
if orgs:
206
print(ANSI.bold("orgs: "), ",".join(orgs))
src/huggingface_hub/commands/user.py
@@ -195,7 +195,7 @@ def run(self):
195
196
197
198
- print(ANSI.bold("user: "), info["name"])
+ print(info["name"])
199
0 commit comments