Skip to content

Commit

Permalink
Fix incosistent docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
derek-globus committed Jun 30, 2024
1 parent a37370a commit 7df3b27
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/globus_sdk/experimental/globus_app/authorizer_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,10 @@ def _make_authorizer(self, resource_server: str) -> RefreshTokenAuthorizer:
"""
Construct a ``RefreshTokenAuthorizer`` for the given resource server.
Raises ``MissingTokensError`` if the underlying ``TokenStorage`` does not
have a refresh token for the given resource server.
:param resource_server: The resource server the authorizer will produce
authentication for
:raises: :exc:`MissingTokenError` if the stored token data for the given
resource server does not have a refresh token
"""
token_data = self.token_storage.get_token_data(resource_server)
if token_data.refresh_token is None:
Expand Down

0 comments on commit 7df3b27

Please sign in to comment.