From 8fbbb8acf81be2a0218e80429a459213f4f9ac20 Mon Sep 17 00:00:00 2001 From: Karel Douda Date: Wed, 11 Sep 2024 18:14:15 +0200 Subject: [PATCH] Remove reference to dead code --- src/pyrdfrules/engine/engine.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pyrdfrules/engine/engine.py b/src/pyrdfrules/engine/engine.py index 8cbd36f..fa1257a 100644 --- a/src/pyrdfrules/engine/engine.py +++ b/src/pyrdfrules/engine/engine.py @@ -3,7 +3,6 @@ from pydantic import BaseModel from pyrdfrules.engine.result.pipeline import PipelineRunResult -from pyrdfrules.pipeline.pipeline import Pipeline def ensure_started(func): def wrapper(*args): @@ -52,7 +51,7 @@ async def stop(self) -> Awaitable: pass @ensure_started - async def launch_pipeline(self, pipeline: Pipeline) -> Awaitable[PipelineRunResult]: + async def launch_pipeline(self) -> Awaitable[PipelineRunResult]: """ Launches the pipeline on this specific engine.