We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c018265 commit 1dd2b83Copy full SHA for 1dd2b83
pylsp_ruff/plugin.py
@@ -514,7 +514,7 @@ def run_ruff(
514
if executable is not None:
515
log.debug(f"Calling {executable} with args: {arguments} on '{document_path}'")
516
try:
517
- cmd = [executable]
+ cmd = [executable, str(subcommand)]
518
cmd.extend(arguments)
519
p = Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=PIPE)
520
except Exception:
0 commit comments