FusionAuth / fusionauth-client-builder

The FusionAuth client library builder
https://fusionauth.io/
Apache License 2.0
6 stars 24 forks source link

Handle true false in query params #46

Closed mooreds closed 2 years ago

mooreds commented 2 years ago

https://github.com/FusionAuth/fusionauth-python-client/issues/10 is the issue.

when we are handed a True object, we need to serialize it to the string 'true'.

In staticly typed languages we use a converter. I didn't think python had one, so just brute forced it with a function call.