Clear all the added `ConfigItem` and all the resolved content.
(self)
| 63 | self.resolved_content: dict[str, ConfigExpression | str | Any | None] = {} |
| 64 | |
| 65 | def reset(self): |
| 66 | """ |
| 67 | Clear all the added `ConfigItem` and all the resolved content. |
| 68 | |
| 69 | """ |
| 70 | self.items = {} |
| 71 | self.resolved_content = {} |
| 72 | |
| 73 | def is_resolved(self) -> bool: |
| 74 | return bool(self.resolved_content) |
no outgoing calls
no test coverage detected