update __slots__

This commit is contained in:
cloudwithax 2023-03-12 22:39:31 -04:00
parent a7da475c0c
commit 3ea426b44b
2 changed files with 3 additions and 0 deletions

View File

@ -126,6 +126,7 @@ class Player(VoiceProtocol):
"_last_position", "_last_position",
"_last_update", "_last_update",
"_ending_track", "_ending_track",
"_log",
"_voice_state", "_voice_state",
"_player_endpoint_uri", "_player_endpoint_uri",
) )

View File

@ -68,6 +68,7 @@ class Node:
"_heartbeat", "_heartbeat",
"_secure", "_secure",
"_fallback", "_fallback",
"_log_level",
"_websocket_uri", "_websocket_uri",
"_rest_uri", "_rest_uri",
"_session", "_session",
@ -84,6 +85,7 @@ class Node:
"_spotify_client", "_spotify_client",
"_apple_music_client", "_apple_music_client",
"_route_planner", "_route_planner",
"_log",
"_stats", "_stats",
"available", "available",
) )