Merge pull request #224 from pigna90/set-verify-to-true

Set verify default value to True
This commit is contained in:
2018-09-21 10:45:04 -04:00
committed by GitHub
+1 -1
View File
@@ -688,7 +688,7 @@ class BaseSession(requests.Session):
amongst other things.
"""
def __init__(self, mock_browser : bool = True, verify : bool = False,
def __init__(self, mock_browser : bool = True, verify : bool = True,
browser_args : list = ['--no-sandbox']):
super().__init__()