From 55ef7a1fe19621ca700a644afc57ffdaf89d3cc4 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 15 Jul 2026 12:43:04 +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_index_no_bootstrap_injection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/studio/backend/tests/test_index_no_bootstrap_injection.py b/studio/backend/tests/test_index_no_bootstrap_injection.py index 4fe0e97431..f1536cdd06 100644 --- a/studio/backend/tests/test_index_no_bootstrap_injection.py +++ b/studio/backend/tests/test_index_no_bootstrap_injection.py @@ -34,7 +34,7 @@ def test_index_never_contains_bootstrap_seed(tmp_path, monkeypatch): ("/some/spa/route", {}), ("/", {"origin": "http://testserver"}), ): - r = client.get(path, headers=headers) + r = client.get(path, headers = headers) assert r.status_code == 200, (path, r.status_code) assert "SEED-DO-NOT-LEAK" not in r.text, path assert "__UNSLOTH_BOOTSTRAP__" not in r.text, path