(obj)
| 230 | |
| 231 | |
| 232 | def dim_section(obj) -> str: |
| 233 | dim_list = format_dims(obj.sizes, obj.xindexes.dims) |
| 234 | |
| 235 | return collapsible_section( |
| 236 | "Dimensions:", inline_details=dim_list, enabled=False, collapsed=True |
| 237 | ) |
| 238 | |
| 239 | |
| 240 | def array_section(obj) -> str: |
no test coverage detected
searching dependent graphs…