From c05772dbc6726d340c7e97f91c5346e58508522d Mon Sep 17 00:00:00 2001
From: Todd Dembrey <todd.dembrey@torchbox.com>
Date: Fri, 15 Dec 2017 15:59:14 +0000
Subject: [PATCH] Fix the flake8 error

---
 opentech/apply/workflow.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opentech/apply/workflow.py b/opentech/apply/workflow.py
index 78f44c907..ff74e5bf0 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
-- 
GitLab