Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/gl_objects/personal_access_tokens.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ Rotate a personal access token and retrieve its new value::
token.rotate()
print(token.token)
# or directly using a token ID
new_token = gl.personal_access_tokens.rotate(42)
print(new_token.token)
new_token_dict = gl.personal_access_tokens.rotate(42)
print(new_token_dict)

Create a personal access token for a user (admin only)::

Expand Down