From dc6567f0ef8e604da9c71b90277a77f255b9ddd9 Mon Sep 17 00:00:00 2001 From: kaichaosun Date: Mon, 24 Nov 2025 17:17:34 +0800 Subject: [PATCH] chore: format code --- src/content_types/all.nim | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/content_types/all.nim b/src/content_types/all.nim index e38a4af..0a0dc28 100644 --- a/src/content_types/all.nim +++ b/src/content_types/all.nim @@ -55,9 +55,6 @@ proc toContentFrame*(frame: TextFrame): ContentFrame = proc initTextFrame*(text: string): TextFrame = result = TextFrame(encoding: ord(Utf8), text: text) - - - proc `$`*(frame: TextFrame): string = result = fmt"TextFrame(encoding:{TextEncoding(frame.encoding)} text:{frame.text})"