This repository has been archived by the owner on Nov 23, 2023. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Parse argument values starting with hyphen
It is not possible to configure AWS Batch job definition parameters to pass `--key=Ref::some_argument` <https://docs.aws.amazon.com/batch/latest/userguide/job_definition_parameters.html#parameters=>, and `argparse` has a long-standing issue re. not being able to handle `--key -value`-type key/value pairs <python/cpython#53580>. The only known workaround is to use the deprecated `optparse` module.
- Loading branch information