This is an automated email from the ASF dual-hosted git repository. jedcunningham pushed a commit to branch v2-4-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit c58918124708fa8718b2fa82419012ac70388d79 Author: fritz-astronomer <[email protected]> AuthorDate: Tue Sep 20 16:55:06 2022 -0400 fix typo in code sample (#26538) (cherry picked from commit 11a381d8d5b4ea54e9164e633e899709aead4fb7) --- docs/apache-airflow/concepts/dynamic-task-mapping.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apache-airflow/concepts/dynamic-task-mapping.rst b/docs/apache-airflow/concepts/dynamic-task-mapping.rst index dac4718f9c..9f02b92215 100644 --- a/docs/apache-airflow/concepts/dynamic-task-mapping.rst +++ b/docs/apache-airflow/concepts/dynamic-task-mapping.rst @@ -305,7 +305,7 @@ Since it is common to want to transform the output data format for task mapping, from airflow.exceptions import AirflowSkipException - filenames = S3ListOperator(...) # Unchanged. + list_filenames = S3ListOperator(...) # Unchanged. def create_copy_kwargs(filename):
