(kind: &str)
| 4649 | } |
| 4650 | |
| 4651 | fn parse_py_worker_agent_kind(kind: &str) -> PyResult<RustWorkerAgentKind> { |
| 4652 | kind.parse::<RustWorkerAgentKind>() |
| 4653 | .map_err(|e| PyValueError::new_err(e.to_string())) |
| 4654 | } |
| 4655 | |
| 4656 | fn py_worker_agent_spec_to_rust(spec: PyWorkerAgentSpec) -> PyResult<RustWorkerAgentSpec> { |
| 4657 | if spec.name.trim().is_empty() { |
no outgoing calls
no test coverage detected