gocardless / gocardless-pro-python

GoCardless Pro Python Client
MIT License
37 stars 26 forks source link

Auto convert python boolean values (True / False) to string in GET requests #75

Closed prolific117 closed 1 year ago

prolific117 commented 1 year ago

Added a fix that conversts boolean values to string in GET requests.

For example a get request with a query: {"successful": true}, ends up being sent as "?successful=True"

This fix ensures such queries are sent correctly, in this case "?successful=true"