From 6e9d494d5ffcf935705bf02ec482fce4bd5cbfe8 Mon Sep 17 00:00:00 2001 From: michael Date: Sat, 7 Apr 2018 12:51:23 -0400 Subject: [PATCH] supress pynacl warning --- redbot/core/bot.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/redbot/core/bot.py b/redbot/core/bot.py index d16f30070..82efebeda 100644 --- a/redbot/core/bot.py +++ b/redbot/core/bot.py @@ -12,6 +12,10 @@ from discord.ext.commands.bot import BotBase from discord.ext.commands import GroupMixin from discord.ext.commands import when_mentioned_or +# This supresses the PyNaCl warning that isn't relevant here +from discord.voice_client import VoiceClient +VoiceClient.warn_nacl = False + from .cog_manager import CogManager from . import ( Config, @@ -26,7 +30,6 @@ from .utils import TYPE_CHECKING if TYPE_CHECKING: from aiohttp_json_rpc import JsonRpc - # noinspection PyUnresolvedReferences class RpcMethodMixin: async def rpc__cogs(self, request):