Also keep in mind you don't even have to put tasks in a variable, for example:
```
with DAG(dag_id="simple", start_date=datetime(2022, 4, 1)) as dag:
BashOperator(task_id="hello", bash_command="echo hello")
BashOperator(task_id="world", bash_command="echo world")
```
