[lint] Remove redundant exception variables

Use bare raise statement when reraising the exception that occured, and
remove unused exception variables.  Also remove a pointless exception
handler in discord.opus.
This commit is contained in:
Hornwitser
2018-08-01 11:36:46 +02:00
committed by Rapptz
parent a71b3b5fa0
commit 4ae8e81660
5 changed files with 13 additions and 16 deletions

View File

@ -81,10 +81,7 @@ def libopus_loader(name):
# register the functions...
for item in exported_functions:
try:
func = getattr(lib, item[0])
except Exception as e:
raise e
func = getattr(lib, item[0])
try:
if item[1]:
@ -110,7 +107,7 @@ try:
_lib = libopus_loader(_filename)
else:
_lib = libopus_loader(ctypes.util.find_library('opus'))
except Exception as e:
except Exception:
_lib = None
def load_opus(name):