diff --git a/airflow-core/src/airflow/models/mappedoperator.py b/airflow-core/src/airflow/models/mappedoperator.py index 5e5fe9975fdde..4b187153ffccc 100644 --- a/airflow-core/src/airflow/models/mappedoperator.py +++ b/airflow-core/src/airflow/models/mappedoperator.py @@ -172,6 +172,10 @@ def task_display_name(self) -> str: def doc_md(self) -> str | None: return self.partial_kwargs.get("doc_md") + @property + def map_index_template(self) -> str | None: + return self.partial_kwargs.get("map_index_template") + @property def inherits_from_empty_operator(self) -> bool: """Implementing an empty Operator."""