Skip to content

Commit

Permalink
Remove reference to dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
kdouda committed Sep 11, 2024
1 parent 994feea commit 8fbbb8a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/pyrdfrules/engine/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 8fbbb8a

Please sign in to comment.