jason810496 commented on code in PR #54563:
URL: https://github.com/apache/airflow/pull/54563#discussion_r2320787365


##########
airflow-core/src/airflow/api_fastapi/common/parameters.py:
##########
@@ -616,6 +616,17 @@ def depends_float(
     FilterParam[bool | None],
     Depends(filter_param_factory(DagModel.is_paused, bool | None, 
filter_name="paused")),
 ]
+QueryHasImportErrorsFilter = Annotated[
+    FilterParam[bool | None],
+    Depends(
+        filter_param_factory(
+            DagModel.has_import_errors,
+            bool | None,
+            filter_name="has_import_errors",
+            description="Filter DAGs by having import errors. Only DAGs that 
have been successfully loaded before will be returned.",

Review Comment:
   ```suggestion
               description="Filter Dags by having import errors. Only Dags that 
have been successfully loaded before will be returned.",
   ```
   
   We are replacing `DAG` with `Dag` in the codebase.



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to