Remove ssl_verify property

Only used when debugging, and in that case, the functionality could be
implemented using private APIs.
This commit is contained in:
Mads Marquart
2019-08-30 17:49:52 +02:00
parent 7c758501fc
commit 4155775305

View File

@@ -49,19 +49,6 @@ class Client:
Used when creating an external event loop to determine when to stop listening.
"""
@property
def ssl_verify(self):
"""Verify SSL certificate.
Set to False to allow debugging with a proxy.
"""
# TODO: Deprecate this
return self._state._session.verify
@ssl_verify.setter
def ssl_verify(self, value):
self._state._session.verify = value
@property
def uid(self):
"""The ID of the client.