triggered by `data[key] = value`
(self, key: str, value: Any)
| 101 | self.data = value |
| 102 | |
| 103 | def __setitem__(self, key: str, value: Any) -> None: |
| 104 | """triggered by `data[key] = value`""" |
| 105 | self.data[key] = value |
| 106 | self.save_setting(self.data) |
| 107 | |
| 108 | def to_dict(self) -> dict: |
| 109 | """return the dict data""" |
nothing calls this directly
no test coverage detected