set value
(self, section, option, value)
| 289 | return val |
| 290 | |
| 291 | def set(self, section, option, value): |
| 292 | """set value""" |
| 293 | |
| 294 | value = self.cast(self.config[section][option]["type"], value) |
| 295 | |
| 296 | self.config[section][option]["value"] = value |
| 297 | self.save() |
| 298 | |
| 299 | def getPlugin(self, plugin, option): |
| 300 | """gets a value for a plugin""" |
no test coverage detected