From 3228af7974947abce3ac6cf8258dd109bc39429b Mon Sep 17 00:00:00 2001 From: Andreas Klintberg Date: Wed, 31 May 2023 18:42:26 -0700 Subject: [PATCH] Typo that caused the workflows to not be valid --- py_asl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py_asl.py b/py_asl.py index 934a309..66d9493 100644 --- a/py_asl.py +++ b/py_asl.py @@ -132,7 +132,7 @@ def __init__(self, Name, **kwargs): def to_dict(self): attrs = super(ParallelState, self).to_dict() branches = [StateMachine(StartAt=task.Name, States=[task]) for task in self.Branches] - attrs['Banches'] = [branch.to_dict() for branch in branches] + attrs['Branches'] = [branch.to_dict() for branch in branches] return attrs