Code Room
Code reviewHard
Question
Review this Python webhook consumer that should process each event exactly once.
What a strong answer looks like
Separate real bugs from style. Rank issues by severity, point at the root cause rather than the symptom, and suggest a concrete fix — specific and kind.
Learn the concepts
def handle(event): if seen.exists(event.id): return send_fulfillment_email(event) # external side effect charge_customer(event) # external side effect seen.add(event.id) # mark processedRun or narrate your approach, then ask the coach.