From 9987bd956b49918564f1904eb03e3e9a9be9a7aa Mon Sep 17 00:00:00 2001 From: Ethan Ruszanowski Date: Mon, 19 Feb 2024 00:42:43 -0500 Subject: [PATCH] Update app.py docstring --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 8cab325..7b8536e 100644 --- a/app.py +++ b/app.py @@ -30,7 +30,7 @@ def find_spawnlist(remaining_power: int, creatures: list[Creature]) -> list[str] 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. + :return: A list of all creatures that may still spawn or None. """ if remaining_power == 0: return None