def unset(self, section, key):
    if not self.cfg: self.load()
    self.cfg.remove_option(section, key)
    return self