Convenience function: Load globs for an operation. Args: operation: Operation name Returns: List of glob patterns
(operation: str)
| 135 | |
| 136 | |
| 137 | def load_globs_for_operation(operation: str) -> list[str]: |
| 138 | """ |
| 139 | Convenience function: Load globs for an operation. |
| 140 | |
| 141 | Args: |
| 142 | operation: Operation name |
| 143 | |
| 144 | Returns: |
| 145 | List of glob patterns |
| 146 | """ |
| 147 | manifest = DependencyManifest() |
| 148 | return manifest.get_globs(operation) |
| 149 | |
| 150 | |
| 151 | def load_operation_config(operation: str) -> dict[str, Any]: |
nothing calls this directly
no test coverage detected