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 cadcec6 commit fcc1e7e
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 @@ -638,7 +638,7 @@ def play(
self,
source: AudioSource,
*,
after: Callable[[Exception | None], Any] = None,
after: Callable[[Exception | None], Any] | None = None,
wait_finish: Literal[True],
) -> asyncio.Future:
...
Expand Down

0 comments on commit fcc1e7e

Please sign in to comment.