Browse Source

Ignore type error already handled by exception handling

pull/7758/head
Rapptz 3 years ago
parent
commit
816d2176e9
  1. 3
      discord/opus.py

3
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

Loading…
Cancel
Save