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

kaxilnaik 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 8ed2fa2c1a6 Fix typo in Newsfragment (#47641)
8ed2fa2c1a6 is described below

commit 8ed2fa2c1a6c30987bc8790e7eaaff7b486ab9a0
Author: Kaxil Naik <[email protected]>
AuthorDate: Wed Mar 12 01:57:01 2025 +0530

    Fix typo in Newsfragment (#47641)
    
    Example: ```airflow.operators....EmptyOperator``` to 
``airflow.operators.EmptyOperator``
---
 newsfragments/41368.significant.rst | 4 ++--
 newsfragments/46231.significant.rst | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/newsfragments/41368.significant.rst 
b/newsfragments/41368.significant.rst
index 45928ec8c54..715cc2575a7 100644
--- a/newsfragments/41368.significant.rst
+++ b/newsfragments/41368.significant.rst
@@ -30,8 +30,8 @@ For example, instead of ``from airflow.sensors import 
TimeDeltaSensor``, use ``f
 
       * [x] ``airflow.operators.bash_operator.BashOperator`` → 
``airflow.operators.bash.BashOperator``
       * [x] ``airflow.operators.branch_operator.BaseBranchOperator`` → 
``airflow.operators.branch.BaseBranchOperator``
-      * [ ] ``airflow.operators....EmptyOperator`` → 
``airflow.providers.standard.operators.empty.EmptyOperator``
-      * [ ] ``airflow.operators....DummyOperator`` → 
``airflow.providers.standard.operators.empty.EmptyOperator``
+      * [ ] ``airflow.operators.EmptyOperator`` → 
``airflow.providers.standard.operators.empty.EmptyOperator``
+      * [ ] ``airflow.operators.DummyOperator`` → 
``airflow.providers.standard.operators.empty.EmptyOperator``
       * [ ] ``airflow.operators.dummy_operator.EmptyOperator`` → 
``airflow.providers.standard.operators.empty.EmptyOperator``
       * [ ] ``airflow.operators.dummy_operator.DummyOperator`` → 
``airflow.providers.standard.operators.empty.EmptyOperator``
       * [x] ``airflow.operators.email_operator.EmailOperator`` → 
``airflow.operators.email.EmailOperator``
diff --git a/newsfragments/46231.significant.rst 
b/newsfragments/46231.significant.rst
index 9d0ab34a438..17f195b5ea1 100644
--- a/newsfragments/46231.significant.rst
+++ b/newsfragments/46231.significant.rst
@@ -20,4 +20,4 @@ For new and existing DAGs, users must import 
``EmptyOperator`` from ``airflow.pr
 
     * AIR302
 
-      * [ ] ``airflow.operators....EmptyOperator`` → 
``airflow.providers.standard.operators.empty.EmptyOperator``
+      * [ ] ``airflow.operators.EmptyOperator`` → 
``airflow.providers.standard.operators.empty.EmptyOperator``

Reply via email to