style: apply ruff auto-fixes

This commit is contained in:
2026-01-19 03:14:30 -08:00
parent 3ab122a55d
commit a961ac3ce7
72 changed files with 2477 additions and 2871 deletions

View File

@@ -351,10 +351,10 @@ class MPV:
pipeline += f" | add-file -path {_q(path or '')}"
try:
from TUI.pipeline_runner import PipelineExecutor # noqa: WPS433
from TUI.pipeline_runner import PipelineRunner # noqa: WPS433
executor = PipelineExecutor()
result = executor.run_pipeline(pipeline)
runner = PipelineRunner()
result = runner.run_pipeline(pipeline)
return {
"success": bool(getattr(result,
"success",