(self, key)
| 247 | return key in self.config["debugOptions"] |
| 248 | |
| 249 | def add(self, key): |
| 250 | opts = self.config.setdefault("debugOptions", []) |
| 251 | if key not in opts: |
| 252 | opts.append(key) |
| 253 | |
| 254 | def discard(self, key): |
| 255 | opts = self.config.get("debugOptions", []) |
no test coverage detected