[tests] fix flake8 warnings in authproxy.py

This commit is contained in:
John Newbery 2017-07-17 13:16:57 -04:00
parent fc0176d01e
commit 323d8f61e9

View file

@ -42,9 +42,8 @@ import socket
import time
import urllib.parse
USER_AGENT = "AuthServiceProxy/0.1"
HTTP_TIMEOUT = 30
USER_AGENT = "AuthServiceProxy/0.1"
log = logging.getLogger("BitcoinRPC")
@ -92,11 +91,9 @@ class AuthServiceProxy(object):
# Callables re-use the connection of the original proxy
self.__conn = connection
elif self.__url.scheme == 'https':
self.__conn = http.client.HTTPSConnection(self.__url.hostname, port,
timeout=timeout)
self.__conn = http.client.HTTPSConnection(self.__url.hostname, port, timeout=timeout)
else:
self.__conn = http.client.HTTPConnection(self.__url.hostname, port,
timeout=timeout)
self.__conn = http.client.HTTPConnection(self.__url.hostname, port, timeout=timeout)
def __getattr__(self, name):
if name.startswith('__') and name.endswith('__'):