Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-schick committed Nov 22, 2023
1 parent 3640eb7 commit e2ac851
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mara_pipelines/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def run_pipeline(pipeline: pipelines.Pipeline, nodes: Set[pipelines.Node] = None
Return:
True when the pipeline run succeeded
"""
from ..logging import logger, pipeline_events
from .. import execution
from .logging import logger, pipeline_events
from . import execution

RESET_ALL = 'reset_all'
PATH_COLOR = 'path_color'
Expand Down Expand Up @@ -143,7 +143,7 @@ def menu(node: pipelines.Node):
help='The parent ids of of the node to reset. Example: "pipeline-id,sub-pipeline-id".')
def reset_incremental_processing(path):
"""Reset status of incremental processing for a node"""
from ..incremental_processing import reset
from .incremental_processing import reset

path = path.split(',') if path else []
node, found = pipelines.find_node(path)
Expand Down

0 comments on commit e2ac851

Please sign in to comment.