Support for `list`, `set`, and `tuple`
If you're using Python 3.9+, then you can type arguments with `list`, `set`, and `tuple` as well as their boxed variants (e.g., `list[int]`).
Bug fixes and minor improvements
https://github.com/swansonk14/typed-argument-parser/commit/8e29d9d2e534239ad0eec4cacfd95bc1449c81a9 Made the saved reproducibility information work for arguments with spaces such as `--arg "Multiple words"` .
https://github.com/swansonk14/typed-argument-parser/commit/5b2eab67473a90e05d1ed5d2397914a5f33d1f9e Added support for pickling `Tap` objects.
https://github.com/swansonk14/typed-argument-parser/pull/54 Fixed an issue where Tap overwrote actions (thanks to Cebtenzzre).
https://github.com/swansonk14/typed-argument-parser/commit/f30ffbe46aa08a68aa84f8edd6062fa9e69eea68 Prevent changing underscores to dashes in positional arguments.
https://github.com/swansonk14/typed-argument-parser/issues/48 `underscores_to_dashes` now works for default/required values (thanks to marcoffee).