You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/06/22 18:30:50 UTC

[airflow] 04/05: Improve tutorial - Include all imports statements (#8670)

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

kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 731ee51ae1ba6a8ab51f3ac861ab2b9b73bcb094
Author: Lyalpha <Ly...@users.noreply.github.com>
AuthorDate: Sun May 3 17:25:39 2020 +0100

    Improve tutorial - Include all imports statements (#8670)
    
    (cherry picked from commit 62796b9e0154daf38de72ebca36e3175001fbf03)
---
 airflow/example_dags/tutorial.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/example_dags/tutorial.py b/airflow/example_dags/tutorial.py
index 18685d1..8858452 100644
--- a/airflow/example_dags/tutorial.py
+++ b/airflow/example_dags/tutorial.py
@@ -23,9 +23,9 @@ Documentation that goes along with the Airflow tutorial located
 [here](https://airflow.apache.org/tutorial.html)
 """
 # [START tutorial]
+# [START import_module]
 from datetime import timedelta
 
-# [START import_module]
 # The DAG object; we'll need this to instantiate a DAG
 from airflow import DAG
 # Operators; we need this to operate!