(self)
| 82 | self.auto_error = auto_error |
| 83 | |
| 84 | def make_authenticate_headers(self) -> dict[str, str]: |
| 85 | return {"WWW-Authenticate": f"{self.model.scheme.title()}"} |
| 86 | |
| 87 | def make_not_authenticated_error(self) -> HTTPException: |
| 88 | return HTTPException( |
no outgoing calls
no test coverage detected