Anytime a method decorated with authentication_required is called with a parameter, an error was being thrown: got multiple values for argument 'self'. This was fixed by replacing self=self with just self.
I also added code to get order status by existing order ID.
Anytime a method decorated with
authentication_required
is called with a parameter, an error was being thrown:got multiple values for argument 'self'
. This was fixed by replacingself=self
with justself
.I also added code to get order status by existing order ID.