Closed swansonk14 closed 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.
**kwargs
tapify
kwargs
str
This has been fixed in 80735dcd80a62f4a27433adcb5a37ac0cfa5fc2a.
Currently, if a function has
**kwargs
, thentapify
will interpret this as a variable namedkwargs
of typestr
rather than placing all additional provided arguments into a dictionary calledkwargs
.