removed test dir

This commit is contained in:
Sandro La Bruzzo 2024-10-23 08:37:01 +02:00
parent e92ef9fbcb
commit e64b3ec6b1
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
import datetime
from airflow import DAG
from airflow.operators.empty import EmptyOperator
with DAG(
dag_id="my_dag_name",
start_date=datetime.datetime(2021, 1, 1),
schedule="@daily",
):
EmptyOperator(task_id="task" )