Lee-W commented on issue #53878:
URL: https://github.com/apache/airflow/issues/53878#issuecomment-3132114672

   Not sure whether it relates to HITL. I just tried with 
   
   ```python
   from __future__ import annotations
   
   import datetime
   
   from airflow.providers.standard.operators.empty import EmptyOperator
   from airflow.sdk import DAG
   
   with DAG(
       dag_id="my_dag_name",
       start_date=datetime.datetime(2021, 1, 1),
       schedule="@daily",
   ):
       EmptyOperator(task_id="task")
   ```
   
   and it does not show up


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to