"""Solution 9.9.1 — Placeholder for later

Chapter 9: Control Flow — Everyday Programming

Bug type: Syntax

The if body is empty, so Python raises an IndentationError. A
placeholder body needs pass.

Exercise: ex_9_9_1.py
"""

for item in [1, 2, 3]:
    if item == 2:
        pass
    print(item)
