Update app.py docstring

This commit is contained in:
Em (Ethan) Ruszanowski 2024-02-19 00:42:43 -05:00
parent 2ec2ec8d3a
commit 9987bd956b
Signed by: em
GPG key ID: C725D6E571252B96

2
app.py
View file

@ -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