Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[internal] Add a way to append values to optional arguments in `parse…
…_arguments` decorator (#1122) Add support for the `append` action for ArgumentParser in the `parse_arguments` decorator on optional arguments. This makes us able to support this: ``` command --arg 1 --arg 2 --arg 3 ``` And get `[1, 2, 3]` as the `arg` value. This CL is required to make changes to #1120 before merging. --------- Co-authored-by: crazy hugsy <[email protected]>
- Loading branch information