From 4bf0e11edd0880e7776e1f4686f7bd9b18c5f293 Mon Sep 17 00:00:00 2001 From: N-o-Z Date: Wed, 6 Dec 2023 17:29:43 +0000 Subject: [PATCH] Update docs/integrations/python.md Co-authored-by: Barak Amar --- docs/integrations/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/python.md b/docs/integrations/python.md index d20f6092fa5..67c5abebd14 100644 --- a/docs/integrations/python.md +++ b/docs/integrations/python.md @@ -59,7 +59,7 @@ clt = Client( For testing SSL endpoints you may wish to use a self-signed certificate. If you do this and receive an `SSL: CERTIFICATE_VERIFY_FAILED` error message you might add the following configuration to your client: ```python -clt.config.verify_ssl= False +clt.config.verify_ssl = False ``` {: .warning }