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
get_shipping_methods was called with different parameters in different
parts of the code. This commit now changes things to call it with as
much information as is available at the time, hence always including the
request and the basket. It also uses named keyword arguments to make
backwards compatibility easier (as the method signature obviously
changed).
Closes#99.
Line 447 of paypal/express/views.py calls repo.get_shipping_methods with the signature:
But in oscar/apps/shipping/repository.py it's given as:
ie with no "user" argument. I'm not sure which is correct?
The text was updated successfully, but these errors were encountered: