(self, key: str)
| 87 | self.options.append(SSHOption(key=key, value=value)) |
| 88 | |
| 89 | def remove_option(self, key: str) -> bool: |
| 90 | for i, opt in enumerate(self.options): |
| 91 | if opt.key.lower() == key.lower(): |
| 92 | del self.options[i] |
| 93 | return True |
| 94 | return False |
| 95 | |
| 96 | |
| 97 | @dataclass |
no outgoing calls
no test coverage detected