Removing useless space.

Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com>
This commit is contained in:
Louis M
2024-07-28 23:49:08 -04:00
committed by GitHub
parent 61ddfd7531
commit bc88737796

View File

@@ -16,7 +16,7 @@ from worlds.generic.Rules import add_rule, set_rule
def _has_hot_soup(state:CollectionState, player: int) -> bool:
"""`player` in `state` has the hotsoup item"""
return state.has_any ({"Hot soup", "Hot soup x 2"}, player)
return state.has_any({"Hot soup", "Hot soup x 2"}, player)
def _has_tongue_cleared(state:CollectionState, player: int) -> bool: