(variables)
| 133 | |
| 134 | |
| 135 | def summarize_vars(variables) -> str: |
| 136 | vars_li = "".join( |
| 137 | f"<li class='xr-var-item'>{summarize_variable(k, v)}</li>" |
| 138 | for k, v in variables.items() |
| 139 | ) |
| 140 | |
| 141 | return f"<ul class='xr-var-list'>{vars_li}</ul>" |
| 142 | |
| 143 | |
| 144 | def short_index_repr_html(index) -> str: |
nothing calls this directly
no test coverage detected
searching dependent graphs…