From 6418de49ecfd58a7a697b95f9c1a619f016cc378 Mon Sep 17 00:00:00 2001 From: Javis Wan Date: Tue, 10 Feb 2026 10:43:47 -0800 Subject: [PATCH] style: fix oxfmt import ordering in tts.ts Co-Authored-By: Claude Opus 4.6 --- src/tts/tts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tts/tts.ts b/src/tts/tts.ts index 82b2b6e1dfa..64d37aa8de1 100644 --- a/src/tts/tts.ts +++ b/src/tts/tts.ts @@ -13,7 +13,6 @@ import { import { tmpdir } from "node:os"; import path from "node:path"; import type { ReplyPayload } from "../auto-reply/types.js"; -import { stripMarkdown } from "../line/markdown-to-line.js"; import type { ChannelId } from "../channels/plugins/types.js"; import type { OpenClawConfig } from "../config/config.js"; import type { @@ -33,6 +32,7 @@ import { import { resolveModel } from "../agents/pi-embedded-runner/model.js"; import { normalizeChannelId } from "../channels/plugins/index.js"; import { logVerbose } from "../globals.js"; +import { stripMarkdown } from "../line/markdown-to-line.js"; import { isVoiceCompatibleAudio } from "../media/audio.js"; import { CONFIG_DIR, resolveUserPath } from "../utils.js";