Provide a nice representation of column indexes.
| 373 | |
| 374 | |
| 375 | class _ColIndexes(dict): |
| 376 | """Provide a nice representation of column indexes.""" |
| 377 | |
| 378 | def __repr__(self) -> str: |
| 379 | """Return a detailed Description column representation.""" |
| 380 | rep = [f' "{k}": {v}' for k, v in self.items()] |
| 381 | return "{\n %s}" % (",\n ".join(rep)) |
| 382 | |
| 383 | |
| 384 | class Table(tableextension.Table, Leaf): |
no outgoing calls
no test coverage detected