This is an automated email from the ASF dual-hosted git repository.
gopidesu 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 04dabf45a60 Update standard provider docs with correct imports (#49395)
04dabf45a60 is described below
commit 04dabf45a60ec55fe715c41bbd8594d0390adf3b
Author: GPK <[email protected]>
AuthorDate: Thu Apr 17 11:14:11 2025 +0100
Update standard provider docs with correct imports (#49395)
---
providers/standard/docs/operators/datetime.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/providers/standard/docs/operators/datetime.rst
b/providers/standard/docs/operators/datetime.rst
index ea8b9d3b31f..ec280539188 100644
--- a/providers/standard/docs/operators/datetime.rst
+++ b/providers/standard/docs/operators/datetime.rst
@@ -20,7 +20,7 @@
BranchDateTimeOperator
======================
-Use the :class:`~airflow.operators.datetime.BranchDateTimeOperator` to branch
into one of two execution paths
+Use the
:class:`~airflow.providers.standard.operators.datetime.BranchDateTimeOperator`
to branch into one of two execution paths
depending on whether the time falls into the range given by two target
arguments,
This operator has two modes. First mode is to use current time (machine clock
time at the
@@ -76,7 +76,7 @@ back-filled.
BranchDayOfWeekOperator
=======================
-Use the :class:`~airflow.operators.weekday.BranchDayOfWeekOperator` to branch
your workflow based on week day value.
+Use the
:class:`~airflow.providers.standard.operators.weekday.BranchDayOfWeekOperator`
to branch your workflow based on week day value.
.. exampleinclude::
/../../../airflow-core/src/airflow/example_dags/example_branch_day_of_week_operator.py
:language: python