You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This generated url does not conform with the API spec, where it should only be comma-separated, as: https://rest.interfax.net/outbound/faxes/completed?ids=123%2C234
Looping over the args and testing against the length on every iteration rather than just using ','.join() seems wasteful and non-pythonic. Please have another look at #10 for a better way.
Activity
asedeno commentedon Jul 12, 2018
#10 will fix this.
fixed issue "bad urls" : client.outbound.completed(*ids) generates ba…
asedeno commentedon Jan 8, 2019
Looping over the args and testing against the length on every iteration rather than just using ','.join() seems wasteful and non-pythonic. Please have another look at #10 for a better way.