Helper to update or remove a single SSH option on the current host.
(self, key: str, value: str)
| 1111 | ) |
| 1112 | |
| 1113 | def _update_host_option(self, key: str, value: str): |
| 1114 | """Helper to update or remove a single SSH option on the current host.""" |
| 1115 | if value.strip(): |
| 1116 | self.current_host.set_option(key, value.strip()) |
| 1117 | else: |
| 1118 | self.current_host.remove_option(key) |
| 1119 | |
| 1120 | def _update_custom_options(self): |
| 1121 | """Updates custom options on the current host based on the listbox content.""" |
nothing calls this directly
no test coverage detected