From 04798328bdeaf003f895ca960af39560612bdd7b Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Tue, 12 Aug 2025 11:27:14 +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 d59a340..6be449a 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