Taragolis commented on code in PR #34791:
URL: https://github.com/apache/airflow/pull/34791#discussion_r1352055813
##########
airflow/cli/cli_config.py:
##########
@@ -543,6 +543,15 @@ def string_lower_type(val):
ARG_DEFAULT = Arg(
("-d", "--default"), metavar="VAL", default=None, help="Default value
returned if variable does not exist"
)
+ARG_VAR_DESCRIPTION = Arg(
+ (
+ "-desc",
Review Comment:
single hyphen it is stands for single letter argument (eg: `-o`, `-j`, etc),
and better don't use multiple letters.
I'm not sure about argument parser which used in airflow cli, but in general:
```bash
somecommand -desc
```
Might be the same as
```bash
somecommand -d -e -s -c
```
--
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]