@@ -173,7 +173,7 @@ async def authorize(self, client: OAuthClientInformationFull, params: Authorizat
173173 Raises:
174174 AuthorizeError: If the authorization request is invalid.
175175 """
176- ... # pragma: no cover
176+ ...
177177
178178 async def load_authorization_code(
179179 self, client: OAuthClientInformationFull, authorization_code: str
@@ -188,7 +188,7 @@ async def load_authorization_code(
188188 Returns:
189189 The AuthorizationCode, or None if not found
190190 """
191- ... # pragma: no cover
191+ ...
192192
193193 async def exchange_authorization_code(
194194 self, client: OAuthClientInformationFull, authorization_code: AuthorizationCodeT
@@ -206,7 +206,7 @@ async def exchange_authorization_code(
206206 Raises:
207207 TokenError: If the request is invalid
208208 """
209- ... # pragma: no cover
209+ ...
210210
211211 async def load_refresh_token(self, client: OAuthClientInformationFull, refresh_token: str) -> RefreshTokenT | None:
212212 """
@@ -219,7 +219,7 @@ async def load_refresh_token(self, client: OAuthClientInformationFull, refresh_t
219219 Returns:
220220 The RefreshToken object if found, or None if not found.
221221 """
222- ... # pragma: no cover
222+ ...
223223
224224 async def exchange_refresh_token(
225225 self,
@@ -243,7 +243,7 @@ async def exchange_refresh_token(
243243 Raises:
244244 TokenError: If the request is invalid
245245 """
246- ... # pragma: no cover
246+ ...
247247
248248 async def load_access_token(self, token: str) -> AccessTokenT | None:
249249 """
0 commit comments