Commit
•
1921e7a
1
Parent(s):
9ac3da0
chore: print payload oauth token
Browse files
src/distilabel_dataset_generator/utils.py
CHANGED
@@ -42,6 +42,7 @@ def list_orgs(oauth_token: OAuthToken = None):
|
|
42 |
if oauth_token is None:
|
43 |
return []
|
44 |
data = whoami(oauth_token.token)
|
|
|
45 |
print(data["auth"])
|
46 |
organisations = [
|
47 |
entry["entity"]["name"]
|
|
|
42 |
if oauth_token is None:
|
43 |
return []
|
44 |
data = whoami(oauth_token.token)
|
45 |
+
print(data)
|
46 |
print(data["auth"])
|
47 |
organisations = [
|
48 |
entry["entity"]["name"]
|