Skip to content

WorkflowStatus

dotflow.core.types.workflow.WorkflowStatus

Import

You can import the WorkflowStatus class with:

from dotflow.core.types import WorkflowStatus
Source code in dotflow/core/types/workflow.py
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
class WorkflowStatus:
    """
    Import:
        You can import the **WorkflowStatus** class with:

            from dotflow.core.types import WorkflowStatus
    """

    NEW = "New"
    IN_PROGRESS = "In progress"
    COMPLETED = "Completed"
    FAILED = "Failed"

COMPLETED = 'Completed' class-attribute instance-attribute

FAILED = 'Failed' class-attribute instance-attribute

IN_PROGRESS = 'In progress' class-attribute instance-attribute

NEW = 'New' class-attribute instance-attribute