Parse increment step
(self, step_data: str)
| 237 | return {"type": "parallel", "steps": self._parse_steps_list(step_data)} |
| 238 | |
| 239 | def _parse_increment_step(self, step_data: str) -> Dict[str, Any]: |
| 240 | """Parse increment step""" |
| 241 | return {"type": "increment", "variable": step_data} |
| 242 | |
| 243 | def _parse_steps_list(self, steps: List[Dict[str, Any]]) -> List[Dict[str, Any]]: |
| 244 | """Parse list of steps""" |
no outgoing calls