(etype: str)
| 112 | |
| 113 | |
| 114 | def _entity_icon(etype: str) -> str: |
| 115 | icon = _ENTITY_ICONS.get(etype, _ENTITY_ICONS["unknown"]) |
| 116 | color = _ENTITY_COLORS.get(etype, _DIM) |
| 117 | return f"[{color}]{icon}[/]" |
| 118 | |
| 119 | |
| 120 | _TuiResult = ( |
no test coverage detected
searching dependent graphs…