(self, key: str, value: str)
| 80 | return None |
| 81 | |
| 82 | def set_option(self, key: str, value: str) -> None: |
| 83 | for opt in self.options: |
| 84 | if opt.key.lower() == key.lower(): |
| 85 | opt.value = value |
| 86 | return |
| 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): |
no test coverage detected