(icon_name)
| 74 | |
| 75 | |
| 76 | def _icon(icon_name) -> str: |
| 77 | # icon_name should be defined in xarray/static/html/icon-svg-inline.html |
| 78 | return ( |
| 79 | f"<svg class='icon xr-{icon_name}'><use xlink:href='#{icon_name}'></use></svg>" |
| 80 | ) |
| 81 | |
| 82 | |
| 83 | def summarize_variable(name, var, is_index=False, dtype=None) -> str: |
no outgoing calls
no test coverage detected
searching dependent graphs…