This is an automated email from the ASF dual-hosted git repository.

jedcunningham pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new b49db97b8e Fix param order in PythonOperator docstring (#40122)
b49db97b8e is described below

commit b49db97b8e2fd5fbeaef469cec2a1343e21a411b
Author: Jed Cunningham <[email protected]>
AuthorDate: Fri Jun 7 09:35:14 2024 -0600

    Fix param order in PythonOperator docstring (#40122)
---
 airflow/operators/python.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/airflow/operators/python.py b/airflow/operators/python.py
index fe9923529a..2faeea2100 100644
--- a/airflow/operators/python.py
+++ b/airflow/operators/python.py
@@ -173,10 +173,10 @@ class PythonOperator(BaseOperator):
 
 
     :param python_callable: A reference to an object that is callable
-    :param op_kwargs: a dictionary of keyword arguments that will get unpacked
-        in your function
     :param op_args: a list of positional arguments that will get unpacked when
         calling your callable
+    :param op_kwargs: a dictionary of keyword arguments that will get unpacked
+        in your function
     :param templates_dict: a dictionary where the values are templates that
         will get templated by the Airflow engine sometime between
         ``__init__`` and ``execute`` takes place and are made available

Reply via email to