summaryrefslogtreecommitdiff
path: root/doc/data/messages/l/locally-disabled
diff options
context:
space:
mode:
Diffstat (limited to 'doc/data/messages/l/locally-disabled')
-rw-r--r--doc/data/messages/l/locally-disabled/bad.py1
-rw-r--r--doc/data/messages/l/locally-disabled/good.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/data/messages/l/locally-disabled/bad.py b/doc/data/messages/l/locally-disabled/bad.py
index 5bfbd58f8..1a3307856 100644
--- a/doc/data/messages/l/locally-disabled/bad.py
+++ b/doc/data/messages/l/locally-disabled/bad.py
@@ -3,5 +3,6 @@ def wizard_spells(spell_book):
for spell in spell_book:
print(f"Abracadabra! {spell}.")
+
spell_list = ["Levitation", "Invisibility", "Fireball", "Teleportation"]
wizard_spells(spell_list)
diff --git a/doc/data/messages/l/locally-disabled/good.py b/doc/data/messages/l/locally-disabled/good.py
index 322a78f27..1bf60bca0 100644
--- a/doc/data/messages/l/locally-disabled/good.py
+++ b/doc/data/messages/l/locally-disabled/good.py
@@ -2,5 +2,6 @@ def wizard_spells(spell_book):
for spell in spell_book:
print(f"Abracadabra! {spell}.")
+
spell_list = ["Levitation", "Invisibility", "Fireball", "Teleportation"]
wizard_spells(spell_list)