(self)
| 210 | return d |
| 211 | |
| 212 | def __repr__(self) -> str: |
| 213 | if self._value is not None: |
| 214 | return f"<{self.__class__.__name__} value={self._value!r}>" |
| 215 | else: |
| 216 | return f"<{self.__class__.__name__} {self.to_dict()!r}>" |
| 217 | |
| 218 | |
| 219 | def _is_section_key(key: str) -> bool: |