library · inferred from evidence
TaskDependency
The class name for task dependencies in recent releases of the Databricks SDK.
- Fix AttributeError when setting depends_on in Databricks job tasks
Passing plain strings to `depends_on` broke with `AttributeError: str object has no attribute as_dict`. The correct shape is a list of `jobs.TaskDependency` objects, e.g. `depends_on=[jobs.TaskDependency(task_key='task1')]`. The maintainer'