Skip to content

Commit 0ce805e

Browse files
committed
format: formatted to fix pre commit error (line length exceed format)
1 parent e5236cb commit 0ce805e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pylsp_ruff/plugin.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ def pylsp_format_document(workspace: Workspace, document: Document) -> Generator
140140
# specifying `format = ["I"]` to get import sorting as part of formatting.
141141
new_text = run_ruff(
142142
settings=PluginSettings(
143-
ignore=["ALL"], select=settings.format, executable=settings.executable
143+
ignore=["ALL"],
144+
select=settings.format,
145+
executable=settings.executable,
144146
),
145147
document_path=document.path,
146148
document_source=new_text,

0 commit comments

Comments
 (0)