Skip to content

Commit

Permalink
Forgot to add kwargs to overload
Browse files Browse the repository at this point in the history
  • Loading branch information
seriaati committed Jul 5, 2024
1 parent 37424c0 commit d36dbb1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions genshin/client/components/auth/subclients/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ async def _send_game_verification_email( # noqa: D102 missing docstring in over
self,
action_ticket: str,
*,
device_model: typing.Optional[str] = None,
device_name: typing.Optional[str] = None,
client_type: typing.Optional[int] = None,
mmt_result: RiskyCheckMMTResult,
) -> None: ...

Expand All @@ -121,6 +124,9 @@ async def _send_game_verification_email( # noqa: D102 missing docstring in over
self,
action_ticket: str,
*,
device_model: typing.Optional[str] = None,
device_name: typing.Optional[str] = None,
client_type: typing.Optional[int] = None,
mmt_result: None = ...,
) -> typing.Union[None, RiskyCheckMMT]: ...

Expand Down

0 comments on commit d36dbb1

Please sign in to comment.