(self, request, **kwargs)
| 44 | super().__init__(*args, **kwargs) |
| 45 | |
| 46 | def send(self, request, **kwargs): |
| 47 | timeout = kwargs.get("timeout") |
| 48 | if timeout is None: |
| 49 | kwargs["timeout"] = self.timeout |
| 50 | return super().send(request, **kwargs) |
| 51 | |
| 52 | |
| 53 | class HTTPExecutor(MiHTTPExecutor): # pragma: no cover |