From debd296aa7f4675633d093a97bb627ae17979794 Mon Sep 17 00:00:00 2001 From: spadakan Date: Fri, 15 Dec 2023 16:54:41 -0500 Subject: [PATCH] fix undefined variable --- opl/http.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opl/http.py b/opl/http.py index d7990b0..44669cb 100644 --- a/opl/http.py +++ b/opl/http.py @@ -1,7 +1,7 @@ import logging import requests - +from requests import HTTPBasicAuth import urllib3 @@ -10,7 +10,7 @@ session = requests.Session() # adding basic authentication to support new cluster session.auth = HTTPBasicAuth(username, password) -session.verify = False +session.verify = False def disable_insecure_request_warnings(disable_it):