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


##########
airflow-core/src/airflow/api_fastapi/common/parameters.py:
##########
@@ -1007,6 +1007,16 @@ def _optional_boolean(value: bool | None) -> bool | None:
         )
     ),
 ]
+QueryHITLDetailMapIndexFilter = Annotated[
+    FilterParam[str | None],
+    Depends(
+        filter_param_factory(
+            TaskInstance.map_index,
+            int,

Review Comment:
   ```suggestion
               int | None,
   ```



##########
airflow-core/src/airflow/api_fastapi/common/parameters.py:
##########
@@ -1007,6 +1007,16 @@ def _optional_boolean(value: bool | None) -> bool | None:
         )
     ),
 ]
+QueryHITLDetailMapIndexFilter = Annotated[
+    FilterParam[str | None],

Review Comment:
   Should this be `int` instead of `str`?
   ```suggestion
       FilterParam[int | None],
   ```



-- 
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