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 00f8316 commit 1b2891cCopy full SHA for 1b2891c
1 file changed
src/fastapi_cloud_cli/utils/auth.py
@@ -130,7 +130,6 @@ def is_user_token_expired(self) -> bool:
130
return _is_jwt_expired(self._user_token)
131
132
def is_logged_in(self) -> bool:
133
- """Whether there is a valid user token"""
134
135
if self._user_token is None:
136
logger.debug("Login status: False (no token)")
@@ -144,7 +143,6 @@ def is_logged_in(self) -> bool:
144
143
return True
145
146
def has_deploy_token(self) -> bool:
147
- """Whether there is a deploy token"""
148
149
if self._deploy_token is None:
150
logger.debug("Deploy token is not provided")
0 commit comments