Skip to content

Commit 1b2891c

Browse files
Apply suggestions from code review
Co-authored-by: Patrick Arminio <patrick.arminio@gmail.com>
1 parent 00f8316 commit 1b2891c

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/fastapi_cloud_cli/utils/auth.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ def is_user_token_expired(self) -> bool:
130130
return _is_jwt_expired(self._user_token)
131131

132132
def is_logged_in(self) -> bool:
133-
"""Whether there is a valid user token"""
134133

135134
if self._user_token is None:
136135
logger.debug("Login status: False (no token)")
@@ -144,7 +143,6 @@ def is_logged_in(self) -> bool:
144143
return True
145144

146145
def has_deploy_token(self) -> bool:
147-
"""Whether there is a deploy token"""
148146

149147
if self._deploy_token is None:
150148
logger.debug("Deploy token is not provided")

0 commit comments

Comments
 (0)