From 0ce805e7b1058a2e59256a0984e90db82f470fce Mon Sep 17 00:00:00 2001 From: KMohZaid <68484509+KMohZaid@users.noreply.github.com> Date: Mon, 19 Aug 2024 10:31:00 +0000 Subject: [PATCH] format: formatted to fix pre commit error (line length exceed format) --- pylsp_ruff/plugin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pylsp_ruff/plugin.py b/pylsp_ruff/plugin.py index d494af1..7b95212 100644 --- a/pylsp_ruff/plugin.py +++ b/pylsp_ruff/plugin.py @@ -140,7 +140,9 @@ def pylsp_format_document(workspace: Workspace, document: Document) -> Generator # specifying `format = ["I"]` to get import sorting as part of formatting. new_text = run_ruff( settings=PluginSettings( - ignore=["ALL"], select=settings.format, executable=settings.executable + ignore=["ALL"], + select=settings.format, + executable=settings.executable, ), document_path=document.path, document_source=new_text,