Skip to content

Commit

Permalink
Update type ignore comment
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonyte committed Nov 15, 2024
1 parent a8d2ec5 commit 5fe49ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bot/modules/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def from_dict(cls, data: dict, bot: RussianRoulette) -> GameInstance:
raise TypeError(msg)
players = [player for player in players if player]
game = GameInstance(
channel=channel, # type: ignore # PrivateChannels should always be MessageableChannels
channel=channel, # type: ignore[reportArgumentType] # PrivateChannels should always be MessageableChannels
creator=creator,
players=players,
)
Expand Down

0 comments on commit 5fe49ec

Please sign in to comment.