fix: docs, slots

This commit is contained in:
NiceAesth 2023-03-11 15:57:37 +02:00
parent e30ec92c34
commit 39bde67d06
4 changed files with 2 additions and 5 deletions

View File

@ -14,5 +14,5 @@ test:
serve-docs: serve-docs:
@cd docs;\ @cd docs;\
make html;\ make html;\
cd build/html;\ cd _build/html;\
python -m http.server;\ python -m http.server;\

View File

@ -13,4 +13,4 @@ player.md
filters.md filters.md
queue.md queue.md
events.md events.md
`` ```

View File

@ -38,8 +38,6 @@ class PomiceEvent(ABC):
``` ```
""" """
__slots__ = ("name", "handler_args")
name = "event" name = "event"
handler_args: Tuple handler_args: Tuple

View File

@ -122,7 +122,6 @@ class Player(VoiceProtocol):
"_ending_track", "_ending_track",
"_voice_state", "_voice_state",
"_player_endpoint_uri", "_player_endpoint_uri",
"__dict__",
) )
def __call__(self, client: Client, channel: VoiceChannel) -> "Player": def __call__(self, client: Client, channel: VoiceChannel) -> "Player":