(self, r: PreparedRequest)
| 117 | """Attaches HTTP Proxy Authentication to a given Request object.""" |
| 118 | |
| 119 | def __call__(self, r: PreparedRequest) -> PreparedRequest: |
| 120 | r.headers["Proxy-Authorization"] = _basic_auth_str(self.username, self.password) |
| 121 | return r |
| 122 | |
| 123 | |
| 124 | class HTTPDigestAuth(AuthBase): |
nothing calls this directly
no test coverage detected