(indexes, max_rows: int | None = None, title: str = "Indexes")
| 555 | |
| 556 | |
| 557 | def indexes_repr(indexes, max_rows: int | None = None, title: str = "Indexes") -> str: |
| 558 | col_width = _calculate_col_width(chain.from_iterable(indexes)) |
| 559 | |
| 560 | return _mapping_repr( |
| 561 | indexes, |
| 562 | title, |
| 563 | summarize_index, |
| 564 | "display_expand_indexes", |
| 565 | col_width=col_width, |
| 566 | max_rows=max_rows, |
| 567 | ) |
| 568 | |
| 569 | |
| 570 | def dim_summary(obj): |
no test coverage detected
searching dependent graphs…