Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/apache-airflow/core-concepts/xcoms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ XComs are explicitly "pushed" and "pulled" to/from their storage using the ``xco
``xcom_pull`` defaults to using this key if no key is passed to it, meaning it's possible to write code like this::

# Pulls the return_value XCOM from "pushing_task"
value = task_instance.xcom_pull(task_ids='pushing_task')
value = task_instance.xcom_pull(task_ids=['pushing_task'])

You can also use XComs in :ref:`templates <concepts:jinja-templating>`::

Expand Down