(prop: dict)
| 62 | return '—' |
| 63 | |
| 64 | def _blueprint_prop_badge(prop: dict) -> str: |
| 65 | if prop.get('is_blueprint_read_write'): |
| 66 | return '🔵 ReadWrite' |
| 67 | if prop.get('is_blueprint_read_only'): |
| 68 | return '🟢 ReadOnly' |
| 69 | return '—' |
| 70 | |
| 71 | def _blueprint_fn_badge(fn: dict) -> str: |
| 72 | parts = [] |