From 579847b56d46c72eaa3ca923e3ce5e7d9db4def1 Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Tue, 12 Aug 2025 11:35:54 +0200 Subject: [PATCH] fix formatter --- server/src/lsp_tclserver.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/src/lsp_tclserver.py b/server/src/lsp_tclserver.py index 69370c4..2218414 100644 --- a/server/src/lsp_tclserver.py +++ b/server/src/lsp_tclserver.py @@ -4,7 +4,8 @@ from typing import List, Optional, Tuple import lsprotocol.types as lsp from pygls.workspace.text_document import TextDocument from tclint.lexer import TclSyntaxError -from tclint.format import Formatter, FormatterOpts +from tclint.format import FormatterOpts +from tools.formatter import NxFormatter as Formatter from tclint.violations import Violation from plugins.poco_plugin import commands from tools import checks, parser