Update player.py

This commit is contained in:
Crussader 2021-10-20 20:58:22 +04:00 committed by GitHub
parent 4c2e35e56e
commit 91e8922435
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,9 @@ class BasePlayer(VoiceProtocol):
def __call__(self, client: discord.Client, channel: VoiceChannel):
self.client: discord.Client = client
self.channel : VoiceChannel = channel
return self
def __init__(self, client : Type[Client] = MISSING, channel: VoiceChannel = MISSING):