mik-laj commented on a change in pull request #9907:
URL: https://github.com/apache/airflow/pull/9907#discussion_r458345893
##########
File path: airflow/cli/cli_parser.py
##########
@@ -626,6 +626,11 @@ def positive_int(value):
),
action="store_true",
default=False)
+ARG_CONN_FILE_PATH = Arg(
+ ('--file-path',),
Review comment:
It should be positional argument.
Example:
```
usage: prog.py [-h] [--sum] N [N ...]
Process some integers.
positional arguments:
N an integer for the accumulator
optional arguments:
-h, --help show this help message and exit
--sum sum the integers (default: find the max)
```
This command have 1 positional argument and 2 keyword argument.
https://docs.python.org/3/library/argparse.html
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]