capitalises constants

This commit is contained in:
Pamela Hathway 2024-08-21 23:15:11 +02:00
parent 0a5162e439
commit 842d09bb55
4 changed files with 13 additions and 13 deletions

View file

@ -6,7 +6,7 @@ from brewing import inspection
def make_example_potion(student_name="ASPP student"):
my_potion = potion_class.Potion(student_name=student_name)
# Set up your old kettle and light an eternal flame underneath it.
my_potion.setup(container=containers.old_kettle)
my_potion.setup(container=containers.OLD_KETTLE)
# Simmer for 5 hours.
cooking.simmer(my_potion, duration=5)
print(f"You successfully ran make_example_potion, {student_name}, well done :).")