LLD - Design — Online Shopping Cart
Examine the following method in an order state machine:
def refund_order(self):
if self.state == 'Delivered':
self.state = 'Refunded'
else:
print('Refund not allowed')What is the issue with this implementation?
