Skip to content
Snippets Groups Projects
Commit c05772db authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Fix the flake8 error

parent 6611fb17
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment