(self, config_path, cfg)
| 572 | return auxiliaryfunctions.read_config(config_path) |
| 573 | |
| 574 | def write_config(self, config_path, cfg): |
| 575 | # Normalize to plain lists before writing config.yaml |
| 576 | cfg = dict(cfg) |
| 577 | if "skeleton" in cfg: |
| 578 | cfg["skeleton"] = [list(pair) for pair in cfg["skeleton"]] |
| 579 | auxiliaryfunctions.write_config(config_path, cfg) |
| 580 | |
| 581 | def display(self): |
| 582 | # No-op, the dialog is shown/exec'd by the caller |
no outgoing calls