(
self, request: httpx.Request
)
| 145 | self._async_lock = anyio.Lock() |
| 146 | |
| 147 | def sync_auth_flow( |
| 148 | self, request: httpx.Request |
| 149 | ) -> typing.Generator[httpx.Request, httpx.Response, None]: |
| 150 | with self._lock: |
| 151 | request.headers["Authorization"] = "sync-auth" |
| 152 | yield request |
| 153 | |
| 154 | async def async_auth_flow( |
| 155 | self, request: httpx.Request |
no outgoing calls
no test coverage detected