(self, hosts: list)
| 128 | pass |
| 129 | |
| 130 | def load_hosts(self, hosts: list): |
| 131 | self.hosts = hosts |
| 132 | self.filtered_hosts = hosts.copy() |
| 133 | self._refresh_view() |
| 134 | self._update_empty_state() |
| 135 | |
| 136 | def filter_hosts(self, query: str): |
| 137 | self.current_filter = query.lower() |
no test coverage detected