From 77b59f7c859566dc194ffe17bdc75ab896347a7c Mon Sep 17 00:00:00 2001 From: nesquena-hermes Date: Wed, 24 Jun 2026 09:29:15 +0000 Subject: [PATCH] test(#4768): drop unused 're' import (ruff F401) --- tests/test_issue4768_cron_module_missing.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_issue4768_cron_module_missing.py b/tests/test_issue4768_cron_module_missing.py index 4a6df57ef..cae1d879c 100644 --- a/tests/test_issue4768_cron_module_missing.py +++ b/tests/test_issue4768_cron_module_missing.py @@ -8,7 +8,6 @@ guard, so a ``ModuleNotFoundError`` bubbled up as a 500 and broke the whole tab. The fix degrades gracefully: an empty job list with a ``cron_unavailable`` flag. """ import pathlib -import re REPO = pathlib.Path(__file__).resolve().parent.parent ROUTES = (REPO / "api" / "routes.py").read_text(encoding="utf-8")