1package p1
2
3type O map[string]map[string]string
4
5func (opts O) RemoveOption(sect, opt string) bool {
6	if _, ok := opts[sect]; !ok {
7		return false
8	}
9	_, ok := opts[sect][opt]
10	delete(opts[sect], opt)
11	return ok
12}
13