Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dotflow/core/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(
self.task.previous_context = previous_context
self.task.workflow_id = workflow_id

self._excution(_flow_callback)
self._execution(_flow_callback)

def _is_action(self, class_instance: Callable, func: Callable):
try:
Expand Down Expand Up @@ -137,7 +137,7 @@ def _execution_with_class(self, class_instance: Callable):

return new_context

def _excution(self, _flow_callback):
def _execution(self, _flow_callback):
try:
start = datetime.now()
current_context = self.task.step(
Expand Down