def connect(self, channel):
if not isinstance(channel, discord.VoiceChannel):
channel = self.bot.get_channel(channel)
if self.voice is None:
await channel.connect()
else:
await self.voice.move_to(channel)