(self)
| 300 | self.update(**toset) |
| 301 | |
| 302 | def __repr__(self): |
| 303 | options = pprint.pformat(self._options, indent=4).strip(" {}") |
| 304 | if "\n" in options: |
| 305 | options = "\n " + options + "\n" |
| 306 | return "{mod}.{cls}({{{options}}})".format( |
| 307 | mod=type(self).__module__, cls=type(self).__name__, options=options |
| 308 | ) |
| 309 | |
| 310 | def set(self, *specs: str, defer: bool = False) -> None: |
| 311 | """ |