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
The text was updated successfully, but these errors were encountered:
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.
When calling client.outbound.completed(*ids), the generated url has the IDs in a tuple:
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
The text was updated successfully, but these errors were encountered: