summaryrefslogtreecommitdiff
path: root/doc/data/messages/f/forgotten-debug-statement/good.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/data/messages/f/forgotten-debug-statement/good.py')
-rw-r--r--doc/data/messages/f/forgotten-debug-statement/good.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/data/messages/f/forgotten-debug-statement/good.py b/doc/data/messages/f/forgotten-debug-statement/good.py
index 21132cb47..7896ff50e 100644
--- a/doc/data/messages/f/forgotten-debug-statement/good.py
+++ b/doc/data/messages/f/forgotten-debug-statement/good.py
@@ -4,5 +4,10 @@ def find_the_treasure(clues):
return True
return False
-treasure_hunt = ["Dead Man's Chest", "X marks the spot", "The treasure is buried near the palm tree"]
+
+treasure_hunt = [
+ "Dead Man's Chest",
+ "X marks the spot",
+ "The treasure is buried near the palm tree",
+]
find_the_treasure(treasure_hunt)