Child nodes of this node, stored under a mapping via their names.
(self)
| 162 | |
| 163 | @property |
| 164 | def children(self) -> Mapping[str, Self]: |
| 165 | """Child nodes of this node, stored under a mapping via their names.""" |
| 166 | return Frozen(self._children) |
| 167 | |
| 168 | @children.setter |
| 169 | def children(self, children: Mapping[str, Self]) -> None: |
nothing calls this directly
no test coverage detected