(self, host: SSHHost)
| 138 | self.hosts.append(host) |
| 139 | |
| 140 | def remove_host(self, host: SSHHost) -> bool: |
| 141 | try: |
| 142 | self.hosts.remove(host) |
| 143 | return True |
| 144 | except ValueError: |
| 145 | return False |
| 146 | |
| 147 | |
| 148 | class SSHConfigParser: |
no outgoing calls
no test coverage detected