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:
@@ -22,7 +22,7 @@ const STATUSBAR_ALIAS: Record<string, StatusBarMode> = {
|
||||
}
|
||||
|
||||
export const normalizeStatusBar = (raw: unknown): StatusBarMode =>
|
||||
raw === false ? 'off' : typeof raw === 'string' ? STATUSBAR_ALIAS[raw.trim().toLowerCase()] ?? 'top' : 'top'
|
||||
raw === false ? 'off' : typeof raw === 'string' ? (STATUSBAR_ALIAS[raw.trim().toLowerCase()] ?? 'top') : 'top'
|
||||
|
||||
const MTIME_POLL_MS = 5000
|
||||
|
||||
|
||||
Reference in New Issue
Block a user