[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

@ -248,7 +248,7 @@ class HTTPClient:
self._token(old_token, bot=old_bot)
if e.response.status == 401:
raise LoginFailure('Improper token has been passed.') from e
raise e
raise
return data