This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 87bdcd7af8a3ef145b547d3d365799dbdd498419 Author: Aritra Basu <[email protected]> AuthorDate: Tue Apr 29 15:16:23 2025 +0530 fixup some spacing issues in params example dag (#49905) (cherry picked from commit ba711b5b0444f0b20adbaedb0724d2734ca11e16) --- airflow-core/src/airflow/example_dags/example_params_ui_tutorial.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/airflow-core/src/airflow/example_dags/example_params_ui_tutorial.py b/airflow-core/src/airflow/example_dags/example_params_ui_tutorial.py index da6b4c585b1..40e4667d35b 100644 --- a/airflow-core/src/airflow/example_dags/example_params_ui_tutorial.py +++ b/airflow-core/src/airflow/example_dags/example_params_ui_tutorial.py @@ -58,7 +58,7 @@ with DAG( type="integer", title="Your favorite number", description_md="Everybody should have a **favorite** number. Not only _math teachers_. " - "If you can not think of any at the moment please think of the 42 which is very famous because" + "If you can not think of any at the moment please think of the 42 which is very famous because " "of the book [The Hitchhiker's Guide to the Galaxy]" "(https://en.wikipedia.org/wiki/Phrases_from_The_Hitchhiker%27s_Guide_to_the_Galaxy#" "The_Answer_to_the_Ultimate_Question_of_Life,_the_Universe,_and_Everything_is_42).", @@ -99,7 +99,7 @@ with DAG( format="date", title="Date Picker", description="Please select a date, use the button on the left for a pop-up calendar. " - "See that here are no times!", + "See that there are no times!", section="Typed parameters with Param object", ), "time": Param( @@ -181,7 +181,7 @@ with DAG( # A multiple options selection can also be combined with values_display "multi_select_with_label": Param( ["2", "3"], - "Select from the list of options. See that options can have nicer text and still technical values" + "Select from the list of options. See that options can have nicer text and still technical values " "are propagated as values during trigger to the DAG.", type="array", title="Multi Select with Labels",
