From 2ec2ec8d3af122ee0db6413be643e6653e010b32 Mon Sep 17 00:00:00 2001 From: Ethan Ruszanowski Date: Sat, 17 Feb 2024 20:46:19 -0500 Subject: [PATCH] Correct typo in app.py --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 2f383bc..8cab325 100644 --- a/app.py +++ b/app.py @@ -27,7 +27,7 @@ class Run: def find_spawnlist(remaining_power: int, creatures: list[Creature]) -> list[str] | None: """ - Given a run, return all possible spwns for location. + Given a run, return all possible spawns for location. :param remaining_power: The remaining power in the current location. :return: A list of all creatures that may still spawn.