Yield IDs in the tree of children.
(self)
| 423 | yield t |
| 424 | |
| 425 | def __iter__(self): |
| 426 | """Yield IDs in the tree of children.""" |
| 427 | for t in self._traverse_ids(): |
| 428 | yield t.id # type: ignore[reportAttributeAccessIssue] |
| 429 | |
| 430 | def __len__(self): |
| 431 | """Return the number of items in the tree.""" |
nothing calls this directly
no test coverage detected