Helper function for creating 'do' actions.
(**kwargs)
| 388 | |
| 389 | |
| 390 | def do(**kwargs) -> dict[str, Any]: |
| 391 | """Helper function for creating 'do' actions.""" |
| 392 | kwargs["_metadata"] = "do" |
| 393 | return kwargs |
| 394 | |
| 395 | |
| 396 | def finish(**kwargs) -> dict[str, Any]: |
nothing calls this directly
no outgoing calls
no test coverage detected