From 41557753056df959dc6122fe1c3d8c9892e9f418 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Fri, 30 Aug 2019 17:49:52 +0200 Subject: [PATCH] Remove ssl_verify property Only used when debugging, and in that case, the functionality could be implemented using private APIs. --- fbchat/_client.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/fbchat/_client.py b/fbchat/_client.py index 5854f8f..70335e9 100644 --- a/fbchat/_client.py +++ b/fbchat/_client.py @@ -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.