()
| 88 | group.set_preview_for_all(lambda _: content) |
| 89 | |
| 90 | async def _confirm() -> bool: |
| 91 | result = await Confirmation( |
| 92 | header=header, |
| 93 | allow_skip=False, |
| 94 | group=group, |
| 95 | preview_header='Log content', |
| 96 | preview_location='bottom', |
| 97 | ).show() |
| 98 | return result.get_value() |
| 99 | |
| 100 | result = tui.run(_confirm) |
| 101 |
nothing calls this directly
no test coverage detected