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
2 people authored and Lulalaby committed Jan 21, 2024
1 parent 5dd91a0 commit 05d1d4d
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 @@ -647,7 +647,7 @@ def play(
self,
source: AudioSource,
*,
after: Callable[[Exception | None], Any] = None,
after: Callable[[Exception | None], Any] | None = None,
wait_finish: bool = False,
) -> None | asyncio.Future:
"""Plays an :class:`AudioSource`.
Expand Down

0 comments on commit 05d1d4d

Please sign in to comment.