(component)
| 389 | |
| 390 | @staticmethod |
| 391 | def _id_str(component): |
| 392 | id_ = stringify_id(getattr(component, "id", "")) |
| 393 | return id_ and f" (id={id_:s})" |
| 394 | |
| 395 | def _traverse_with_paths(self): |
| 396 | """Yield each item with its path in the tree.""" |
no test coverage detected