(self)
| 214 | self.ssh_client.set_missing_host_key_policy(paramiko.RejectPolicy()) |
| 215 | |
| 216 | def _connect(self): |
| 217 | if self.ssh_client: |
| 218 | self.ssh_client.connect(**self.ssh_params) |
| 219 | |
| 220 | def get_connection(self, url, proxies=None): |
| 221 | if not self.ssh_client: |
no test coverage detected