(step_data: Dict[str, Any], key: str)
| 5 | |
| 6 | |
| 7 | def split_step_value(step_data: Dict[str, Any], key: str) -> tuple[Dict[str, Any], Any]: |
| 8 | value = step_data.get(key) |
| 9 | if isinstance(value, dict): |
| 10 | return value, None |
| 11 | return {}, value |
| 12 | |
| 13 | |
| 14 | def get_step_instruction(step_data: Dict[str, Any], context: Dict[str, Any]) -> str: |
no test coverage detected