(self, r: PreparedRequest)
| 109 | return not self == other |
| 110 | |
| 111 | def __call__(self, r: PreparedRequest) -> PreparedRequest: |
| 112 | r.headers["Authorization"] = _basic_auth_str(self.username, self.password) |
| 113 | return r |
| 114 | |
| 115 | |
| 116 | class HTTPProxyAuth(HTTPBasicAuth): |
nothing calls this directly
no test coverage detected