Skip to content

Commit

Permalink
fix(typing): mark after as optional
Browse files Browse the repository at this point in the history
Co-authored-by: Dorukyum <[email protected]>
Signed-off-by: Krutyi-4el <[email protected]>
  • Loading branch information
solaluset and Dorukyum authored Jan 18, 2024
1 parent e495199 commit cadcec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discord/voice_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ def play(
self,
source: AudioSource,
*,
after: Callable[[Exception | None], Any] = None,
after: Callable[[Exception | None], Any] | None = None,
wait_finish: Literal[False] = False,
) -> None:
...
Expand Down

0 comments on commit cadcec6

Please sign in to comment.