Convenience function: Load full operation config. Args: operation: Operation name Returns: Full operation configuration dictionary
(operation: str)
| 149 | |
| 150 | |
| 151 | def load_operation_config(operation: str) -> dict[str, Any]: |
| 152 | """ |
| 153 | Convenience function: Load full operation config. |
| 154 | |
| 155 | Args: |
| 156 | operation: Operation name |
| 157 | |
| 158 | Returns: |
| 159 | Full operation configuration dictionary |
| 160 | """ |
| 161 | manifest = DependencyManifest() |
| 162 | return manifest.get_operation(operation) |
| 163 | |
| 164 | |
| 165 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected