"""Exercise 9.3.4 — Out of stock

Chapter 9: Control Flow — Everyday Programming

This program should print Reorder when an item is not in stock. With
stock False it should print Reorder.

This program contains exactly one bug. Solution: sol_9_3_4.py
"""

in_stock = False

if not in_stock = True:
    print("Reorder")
# Expected: Reorder
