(self, username: str | bytes, password: str | bytes)
| 130 | """ |
| 131 | |
| 132 | def __init__(self, username: str | bytes, password: str | bytes) -> None: |
| 133 | self._auth_header = self._build_auth_header(username, password) |
| 134 | |
| 135 | def auth_flow(self, request: Request) -> typing.Generator[Request, Response, None]: |
| 136 | request.headers["Authorization"] = self._auth_header |
nothing calls this directly
no test coverage detected