swansonk14 / typed-argument-parser

Typed argument parser for Python
MIT License
505 stars 40 forks source link

Fix `tapify` to correctly handle **kwargs #114

Closed swansonk14 closed 1 year ago

swansonk14 commented 1 year ago

Currently, if a function has **kwargs, then tapify will interpret this as a variable named kwargs of type str rather than placing all additional provided arguments into a dictionary called kwargs.

swansonk14 commented 1 year ago

This has been fixed in 80735dcd80a62f4a27433adcb5a37ac0cfa5fc2a.