Skip to content

Commit

Permalink
Use airflow.models.dag.DAG in dev (apache#34615)
Browse files Browse the repository at this point in the history
  • Loading branch information
Taragolis authored Sep 26, 2023
1 parent 8f1418f commit 2b57f39
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev/perf/dags/elastic_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
from datetime import datetime, timedelta
from enum import Enum

from airflow import DAG
from airflow.models.baseoperator import chain
from airflow.models.dag import DAG
from airflow.operators.bash import BashOperator

# DAG File used in performance tests. Its shape can be configured by environment variables.
Expand Down
2 changes: 1 addition & 1 deletion dev/perf/dags/perf_dag_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import datetime

from airflow.models import DAG
from airflow.models.dag import DAG
from airflow.operators.bash_operator import BashOperator

args = {
Expand Down
2 changes: 1 addition & 1 deletion dev/perf/dags/perf_dag_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import datetime

from airflow.models import DAG
from airflow.models.dag import DAG
from airflow.operators.bash import BashOperator

args = {
Expand Down

0 comments on commit 2b57f39

Please sign in to comment.