Returns the `.AsyncHTTPClient` instance to be used for auth requests. May be overridden by subclasses to use an HTTP client other than the default.
(self)
| 262 | return user |
| 263 | |
| 264 | def get_auth_http_client(self) -> httpclient.AsyncHTTPClient: |
| 265 | """Returns the `.AsyncHTTPClient` instance to be used for auth requests. |
| 266 | |
| 267 | May be overridden by subclasses to use an HTTP client other than |
| 268 | the default. |
| 269 | """ |
| 270 | return httpclient.AsyncHTTPClient() |
| 271 | |
| 272 | |
| 273 | class OAuthMixin(object): |
no outgoing calls
no test coverage detected