Joshua Jodrey

Results 2 comments of Joshua Jodrey

Good to know, thanks @frol. I'm very appreciative of all your hard work on this project, and if I end up going the helper method route, I'll be sure to...

Here's what I ended up going with: ```python def multi_params(*params): m = Parameters() for p in params: m.fields = dict(m.fields, **p.fields) return m ``` And then you can simply put...