(indexes)
| 170 | |
| 171 | |
| 172 | def summarize_indexes(indexes) -> str: |
| 173 | indexes_li = "".join( |
| 174 | f"<li class='xr-var-item'>{summarize_index(v, i)}</li>" |
| 175 | for v, i in indexes.items() |
| 176 | ) |
| 177 | return f"<ul class='xr-var-list'>{indexes_li}</ul>" |
| 178 | |
| 179 | |
| 180 | def collapsible_section( |
nothing calls this directly
no test coverage detected
searching dependent graphs…