Skip to content

Commit

Permalink
Fix typos in actor.py (#160)
Browse files Browse the repository at this point in the history
Fix typos in actor.py 309:310
  • Loading branch information
ruthenian8 authored Jul 4, 2023
1 parent 9b9ca56 commit fac7cac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dff/pipeline/pipeline/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ def _get_true_label(
logger.debug(f"{transition_info} transitions sorted by priority = {true_labels}")
return true_label

def _run_handlers(self, ctx, pipeline: Pipeline, actor_stade: ActorStage, *args, **kwargs):
[handler(ctx, pipeline, *args, **kwargs) for handler in self.handlers.get(actor_stade, [])]
def _run_handlers(self, ctx, pipeline: Pipeline, actor_stage: ActorStage, *args, **kwargs):
[handler(ctx, pipeline, *args, **kwargs) for handler in self.handlers.get(actor_stage, [])]

def _choose_label(
self, specific_label: Optional[NodeLabel3Type], general_label: Optional[NodeLabel3Type]
Expand Down

0 comments on commit fac7cac

Please sign in to comment.