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)
| 545 | return base_args |
| 546 | |
| 547 | def get_auth_http_client(self) -> httpclient.AsyncHTTPClient: |
| 548 | """Returns the `.AsyncHTTPClient` instance to be used for auth requests. |
| 549 | |
| 550 | May be overridden by subclasses to use an HTTP client other than |
| 551 | the default. |
| 552 | """ |
| 553 | return httpclient.AsyncHTTPClient() |
| 554 | |
| 555 | |
| 556 | class OAuth2Mixin: |
no outgoing calls
no test coverage detected