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)
| 530 | return base_args |
| 531 | |
| 532 | def get_auth_http_client(self) -> httpclient.AsyncHTTPClient: |
| 533 | """Returns the `.AsyncHTTPClient` instance to be used for auth requests. |
| 534 | |
| 535 | May be overridden by subclasses to use an HTTP client other than |
| 536 | the default. |
| 537 | """ |
| 538 | return httpclient.AsyncHTTPClient() |
| 539 | |
| 540 | |
| 541 | class OAuth2Mixin(object): |
no outgoing calls
no test coverage detected