Skip to content

Commit 7959dff

Browse files
refactor: remove unused imports from workflow runtime modules
1 parent 476954a commit 7959dff

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/fls_pilot/runtime/effective_workflows.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
from typing import Any
55

66
from ..workflow_identity import is_custom_workflow_id, normalize_workflow_id
7-
from ..workflows.registry import WorkflowDeclaration, WorkflowRegistry
8-
from .workflow_models import WorkflowDefinition
7+
from ..workflows.registry import WorkflowRegistry
98
from .workflow_store import WorkflowStore
109

1110
logger = logging.getLogger(__name__)

src/fls_pilot/runtime/workflow_runs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import annotations
44

55
from dataclasses import dataclass, field
6-
from typing import Any, Mapping
6+
from typing import Any
77

88
@dataclass(frozen=True)
99
class WorkflowRun:

0 commit comments

Comments
 (0)