(self, updated: set[str])
| 81 | ) |
| 82 | |
| 83 | def _sig_options_update(self, updated: set[str]) -> None: |
| 84 | options_dict = optmanager.dump_dicts(self.options, updated) |
| 85 | app.ClientConnection.broadcast( |
| 86 | type="options/update", |
| 87 | payload=options_dict, |
| 88 | ) |
| 89 | |
| 90 | def _sig_servers_changed(self) -> None: |
| 91 | app.ClientConnection.broadcast( |