Skip to content

Commit 78f3842

Browse files
committed
fix doubled self
1 parent 7358aed commit 78f3842

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ayon_api/server_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ def access_token(self) -> Optional[str]:
511511
Optional[str]: Token string or None if not authorized yet.
512512
513513
"""
514-
return self.self._token_info.token
514+
return self._token_info.token
515515

516516
def is_service_user(self) -> bool:
517517
"""Check if connection is using service API key.

0 commit comments

Comments
 (0)