Truncate string with ellipsis
(s: str, max_len: int)
| 131 | |
| 132 | |
| 133 | def truncate(s: str, max_len: int) -> str: |
| 134 | """Truncate string with ellipsis""" |
| 135 | if len(s) <= max_len: |
| 136 | return s |
| 137 | return s[:max_len-3] + "..." |
| 138 | |
| 139 | |
| 140 | def render_dashboard(state: MonitorState, width: int = 80): |