From 380a20a6f8cff2e36e131874203321d5656b9dd4 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Fri, 26 Jun 2026 20:55:52 -0700 Subject: [PATCH] =?UTF-8?q?fix(ci):=20restore=20TaskSpec=20re-export=20wit?= =?UTF-8?q?h=20noqa=20=E2=80=94=20tests=20import=20from=20here?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/task_scheduler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/task_scheduler.py b/scripts/task_scheduler.py index 261e5a8..09fb586 100644 --- a/scripts/task_scheduler.py +++ b/scripts/task_scheduler.py @@ -21,6 +21,7 @@ from typing import Callable, Optional from circuitforge_core.tasks.scheduler import ( LocalScheduler as _CoreTaskScheduler, + TaskSpec, # noqa: F401 — re-exported as part of public API; tests import from here ) logger = logging.getLogger(__name__)