Action (autotransform.step.action)

Actions are returned by Steps to determine what should be done based on the Step.

class autotransform.step.action.Action

Bases: TypedDict

An Action represents the results of checking a Step to determine what should be done in response to it.

stop_steps: bool
type: ActionType
class autotransform.step.action.ActionType(value)

Bases: str, Enum

An enum representing a possible action to take.

ABANDON = 'abandon'
MERGE = 'merge'
NONE = 'none'
UPDATE = 'update'