Skip to content

Commit

Permalink
fix undefined variable
Browse files Browse the repository at this point in the history
  • Loading branch information
sarathbrp committed Dec 15, 2023
1 parent 3900c1a commit debd296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opl/http.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging

import requests

from requests import HTTPBasicAuth
import urllib3


Expand All @@ -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):
Expand Down

0 comments on commit debd296

Please sign in to comment.