From 9b8e49262caba9494b6fef794a9029fabbe1517c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 03:01:15 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- studio/backend/tests/test_hf_xet_fallback.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/studio/backend/tests/test_hf_xet_fallback.py b/studio/backend/tests/test_hf_xet_fallback.py index c0b624e27b..5e38796bf8 100644 --- a/studio/backend/tests/test_hf_xet_fallback.py +++ b/studio/backend/tests/test_hf_xet_fallback.py @@ -321,7 +321,12 @@ def test_no_light_gpu_init_retry_on_an_accelerator_host(monkeypatch): attempts = [] class _Blocker: - def find_spec(self, name, path = None, target = None): + def find_spec( + self, + name, + path = None, + target = None, + ): if name == "unsloth_zoo": attempts.append(os.environ.get("UNSLOTH_ZOO_DISABLE_GPU_INIT")) raise RuntimeError("CUDA Setup failed despite GPU being available")