summaryrefslogtreecommitdiff
path: root/doc/data/messages/f/forgotten-debug-statement/good.py
blob: 7896ff50eb1286d1d95d1f9aeab6a6cfdc98aca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
def find_the_treasure(clues):
    for clue in clues:
        if "treasure" in clue:
            return True
    return False


treasure_hunt = [
    "Dead Man's Chest",
    "X marks the spot",
    "The treasure is buried near the palm tree",
]
find_the_treasure(treasure_hunt)