| 242 | assert "CustomIndex" in normal |
| 243 | |
| 244 | class IndexWithInlineRepr(CustomIndex): |
| 245 | def _repr_inline_(self, max_width: int): |
| 246 | return f"CustomIndex[{', '.join(self.names)}]" |
| 247 | |
| 248 | index = IndexWithInlineRepr(coord_names) |
| 249 | inline = formatting.summarize_index(names, index, col_width=20) |
no outgoing calls
searching dependent graphs…