mirror of
https://github.com/solero/houdini.git
synced 2024-11-09 20:58:20 +00:00
Fixed missed union operators (#100)
This commit is contained in:
parent
5299b79a6f
commit
f6f9f39c22
@ -580,7 +580,7 @@ class CardJitsuWaterLogic(IWaddle):
|
|||||||
self,
|
self,
|
||||||
player: WaterPlayer,
|
player: WaterPlayer,
|
||||||
fell: bool = False,
|
fell: bool = False,
|
||||||
position: int | None = None
|
position: Union[int, None] = None
|
||||||
) -> Amulet:
|
) -> Amulet:
|
||||||
"""
|
"""
|
||||||
Update the Card-Jitsu Water progress for a player after they reach the end
|
Update the Card-Jitsu Water progress for a player after they reach the end
|
||||||
@ -848,7 +848,7 @@ class CardJitsuWaterLogic(IWaddle):
|
|||||||
class WaterSenseiLogic(CardJitsuWaterLogic):
|
class WaterSenseiLogic(CardJitsuWaterLogic):
|
||||||
"""Logic for a Card-Jitsu Water match against Sensei"""
|
"""Logic for a Card-Jitsu Water match against Sensei"""
|
||||||
|
|
||||||
sensei_loop: asyncio.Task | None = None
|
sensei_loop: Union[asyncio.Task, None] = None
|
||||||
"""Loop that controls Sensei's AI"""
|
"""Loop that controls Sensei's AI"""
|
||||||
|
|
||||||
def __init__(self, waddle):
|
def __init__(self, waddle):
|
||||||
|
Loading…
Reference in New Issue
Block a user