(self)
| 799 | return repr(self.config) |
| 800 | |
| 801 | def items(self): |
| 802 | yield from self.tasks.items() |
| 803 | |
| 804 | def __setattr__(self, key: str, value): |
| 805 | if key and key.startswith('dict') and not hasattr(self, key): |
no outgoing calls
no test coverage detected