uranusjr commented on code in PR #31308:
URL: https://github.com/apache/airflow/pull/31308#discussion_r1197501697
##########
airflow/cli/cli_config.py:
##########
@@ -277,7 +278,13 @@ def string_lower_type(val):
ARG_NO_BACKFILL = Arg(
("--no-backfill",), help="filter all the backfill dagruns given the dag
id", action="store_true"
)
-ARG_STATE = Arg(("--state",), help="Only list the dag runs corresponding to
the state")
+dagrun_states = tuple(state.value for state in DagRunState)
+ARG_STATE = Arg(
+ ("--state",),
+ help="Only list the dag runs corresponding to the state",
+ metavar=f'({", ".join(dagrun_states)})',
Review Comment:
```suggestion
metavar=", ".join(dagrun_states),
```
--
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]