diff --git a/opentech/apply/workflow.py b/opentech/apply/workflow.py index 78f44c907f2a0b706695349e4df2d106bf79d6d9..ff74e5bf08722125f340bf84b4c530b01e699a38 100644 --- a/opentech/apply/workflow.py +++ b/opentech/apply/workflow.py @@ -63,7 +63,7 @@ class Phase: def __init__(self, name: str, actions: Sequence['Action']) -> None: self.name = name self.stage: Union['Stage', None] = None - self._actions= {action.name: action for action in actions} + self._actions = {action.name: action for action in actions} self.occurance: int = 0 @property