style(debug): add missing blank line between LogSnapshot and helpers

Copilot on #14145 flagged PEP 8 / Black convention — two blank lines
between top-level class and next top-level function.
This commit is contained in:
Brooklyn Nicholson 2026-04-22 16:34:05 -05:00
parent 103c71ac36
commit 4107538da8
6 changed files with 11 additions and 18 deletions

View file

@ -386,11 +386,7 @@ export function useInputHandlers(ctx: InputHandlerContext): InputHandlerResult {
return void gateway
.rpc<ConfigSetResponse>('config.set', { key: 'yolo', session_id: live.sid })
.then(r =>
actions.sys(
r?.value === '1' ? 'yolo on' : r?.value === '0' ? 'yolo off' : 'failed to toggle yolo'
)
)
.then(r => actions.sys(r?.value === '1' ? 'yolo on' : r?.value === '0' ? 'yolo off' : 'failed to toggle yolo'))
.catch(() => actions.sys('failed to toggle yolo'))
}