From 3ea426b44bef0a462503069c46973778b410c03f Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Sun, 12 Mar 2023 22:39:31 -0400 Subject: [PATCH] update __slots__ --- pomice/player.py | 1 + pomice/pool.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/pomice/player.py b/pomice/player.py index 9b70010..93aae48 100644 --- a/pomice/player.py +++ b/pomice/player.py @@ -126,6 +126,7 @@ class Player(VoiceProtocol): "_last_position", "_last_update", "_ending_track", + "_log", "_voice_state", "_player_endpoint_uri", ) diff --git a/pomice/pool.py b/pomice/pool.py index 42b066a..ae97773 100644 --- a/pomice/pool.py +++ b/pomice/pool.py @@ -68,6 +68,7 @@ class Node: "_heartbeat", "_secure", "_fallback", + "_log_level", "_websocket_uri", "_rest_uri", "_session", @@ -84,6 +85,7 @@ class Node: "_spotify_client", "_apple_music_client", "_route_planner", + "_log", "_stats", "available", )