Remove assigned but never used local variables

This commit is contained in:
practicalswift
2018-03-29 17:47:06 +02:00
parent f0f9732d05
commit 169f3e8637
5 changed files with 17 additions and 17 deletions

View File

@@ -151,7 +151,7 @@ class AuthServiceProxy():
req_start_time = time.time()
try:
http_response = self.__conn.getresponse()
except socket.timeout as e:
except socket.timeout:
raise JSONRPCException({
'code': -344,
'message': '%r RPC took longer than %f seconds. Consider '