From 816d2176e91514ad97d67a1e86650dbfb0eac4a1 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Thu, 24 Mar 2022 23:50:47 -0400 Subject: [PATCH] Ignore type error already handled by exception handling --- discord/opus.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/discord/opus.py b/discord/opus.py index 33641554e..9eda3f0b3 100644 --- a/discord/opus.py +++ b/discord/opus.py @@ -217,7 +217,8 @@ def _load_default() -> bool: _filename = os.path.join(_basedir, 'bin', f'libopus-0.{_target}.dll') _lib = libopus_loader(_filename) else: - _lib = libopus_loader(ctypes.util.find_library('opus')) + # This is handled in the exception case + _lib = libopus_loader(ctypes.util.find_library('opus')) # type: ignore except Exception: _lib = None