True if a jobs key is a factory (contains {placeholder} markers).
Source Code
View on GitHub
Source code in src/kedro_azureml_pipeline/factory.py
| def is_factory(key: str) -> bool:
"""True if a ``jobs`` key is a factory (contains ``{placeholder}`` markers)."""
return "{" in key and "}" in key
|