MCPcopy Index your code
hub / github.com/pydata/xarray / summarize_indexes

Function summarize_indexes

xarray/core/formatting_html.py:172–177  ·  view source on GitHub ↗
(indexes)

Source from the content-addressed store, hash-verified

170
171
172def 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
180def collapsible_section(

Callers

nothing calls this directly

Calls 3

itemsMethod · 0.80
summarize_indexFunction · 0.70
joinMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…