From 740e73fd993a1b87eb2331dd83f0f8e095955eb4 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 10 Jul 2026 19:48:24 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- studio/backend/core/inference/tools.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/studio/backend/core/inference/tools.py b/studio/backend/core/inference/tools.py index ecc7c4450e..6b8137f60c 100644 --- a/studio/backend/core/inference/tools.py +++ b/studio/backend/core/inference/tools.py @@ -5504,11 +5504,7 @@ def _scan_command_string_for_reads( _rj = _fi2 + 1 while _rj < len(ptoks): _rt = ptoks[_rj] - if ( - _rt.startswith("-") - or _rt in ("(", "!", ",") - or _rt in _READ_SCAN_SEPARATORS - ): + if _rt.startswith("-") or _rt in ("(", "!", ",") or _rt in _READ_SCAN_SEPARATORS: break _find_roots.append(_rt) _rj += 1