diff --git a/hyperwallet/utils/apiclient.py b/hyperwallet/utils/apiclient.py index 9b2461c..d41617d 100644 --- a/hyperwallet/utils/apiclient.py +++ b/hyperwallet/utils/apiclient.py @@ -48,7 +48,7 @@ def __init__(self, username, password, server): # The default connection to persist authentication and SSL settings. defaultSession = requests.Session() - defaultSession.mount(self.server, SSLAdapter(ssl.PROTOCOL_TLSv1_2)) + defaultSession.mount(self.server, SSLAdapter()) defaultSession.auth = (self.username, self.password) defaultSession.headers = self.baseHeaders