LLD - Design — Food Delivery System
Identify the bug in this order tracking state machine snippet:
state = 'shipped'
event = 'cancel_order'
if state == 'placed' and event == 'cancel_order':
state = 'cancelled'
elif state == 'shipped' and event == 'cancel_order':
print('Cannot cancel after shipping')
else:
state = 'cancelled'
print(state)