(r)
| 1490 | children = [get_child(path=child_path(name)) for name in children_names] |
| 1491 | |
| 1492 | def _sorter(r): |
| 1493 | return (r.has_children(), r.name.lower(), r.name) |
| 1494 | |
| 1495 | return sorted((c for c in children if c), key=_sorter) |
| 1496 |
nothing calls this directly
no test coverage detected