LLD - Design — Food Delivery System
Identify the error in this state transition function:
def transition(state, event):
if state == 'placed' and event == 'ship'
return 'shipped'
return state