From 4c74523794b655bcff72ace92c7ea6f535a0e26a Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 27 May 2022 04:13:56 -0400 Subject: [PATCH] Fix versionadded docstrings in voice connect methods --- discord/abc.py | 4 ++-- discord/voice_client.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/discord/abc.py b/discord/abc.py index 2f78f36d0..03f90baae 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -1839,11 +1839,11 @@ class Connectable(Protocol): self_mute: :class:`bool` Indicates if the client should be self-muted. - .. versionadded: 2.0 + .. versionadded:: 2.0 self_deaf: :class:`bool` Indicates if the client should be self-deafened. - .. versionadded: 2.0 + .. versionadded:: 2.0 Raises ------- diff --git a/discord/voice_client.py b/discord/voice_client.py index f4086d4d6..2065c7607 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -164,11 +164,11 @@ class VoiceProtocol: self_mute: :class:`bool` Indicates if the client should be self-muted. - .. versionadded: 2.0 + .. versionadded:: 2.0 self_deaf: :class:`bool` Indicates if the client should be self-deafened. - .. versionadded: 2.0 + .. versionadded:: 2.0 """ raise NotImplementedError