Baracchino-Della-Scuola / Bot

if statements can be merged PTC-W0048
Anti-pattern
Major
5 months ago2 years old
Consider merging collapsible if statements
506        if not ctx.author.voice or not ctx.author.voice.channel:
507            raise commands.CommandError("You are not connected to any voice channel.")
508
509        if ctx.voice_client:510            if ctx.voice_client.channel != ctx.author.voice.channel:
511                raise commands.CommandError("Bot is already in a voice channel.")
512