Fixed missed union operators (#100)

This commit is contained in:
Thunder930 2024-09-16 10:07:11 -04:00 committed by GitHub
parent 5299b79a6f
commit f6f9f39c22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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