mirror of
https://github.com/ethanrusz/scouter.git
synced 2024-11-22 03:07:45 -05:00
Update app.py docstring
This commit is contained in:
parent
2ec2ec8d3a
commit
9987bd956b
1 changed files with 1 additions and 1 deletions
2
app.py
2
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.
|
Given a run, return all possible spawns for location.
|
||||||
|
|
||||||
:param remaining_power: The remaining power in the current 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:
|
if remaining_power == 0:
|
||||||
return None
|
return None
|
||||||
|
|
Loading…
Reference in a new issue