(sections: list[str])
| 300 | |
| 301 | |
| 302 | def _sections_repr(sections: list[str]) -> str: |
| 303 | section_items = "".join(f"<li class='xr-section-item'>{s}</li>" for s in sections) |
| 304 | return f"<ul class='xr-sections'>{section_items}</ul>" |
| 305 | |
| 306 | |
| 307 | def _obj_repr(obj, header_components, sections): |
no test coverage detected
searching dependent graphs…