(col_items)
| 377 | |
| 378 | |
| 379 | def _calculate_col_width(col_items): |
| 380 | max_name_length = max((len(str(s)) for s in col_items), default=0) |
| 381 | col_width = max(max_name_length, 7) + 6 |
| 382 | return col_width |
| 383 | |
| 384 | |
| 385 | def _mapping_repr( |
no outgoing calls
no test coverage detected
searching dependent graphs…