Skip to content
Prev Previous commit
Wrap line to comply with CI lint
  • Loading branch information
agubelu committed May 15, 2024
commit 4089f3dc65f783beaa53cc032958ab625440d0ac
4 changes: 3 additions & 1 deletion src/requests/adapters.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ def SOCKSProxyManager(*args, **kwargs):
DEFAULT_POOL_TIMEOUT = None

_preloaded_ssl_context = create_urllib3_context()
_preloaded_ssl_context.load_verify_locations(extract_zipped_paths(DEFAULT_CA_BUNDLE_PATH))
_preloaded_ssl_context.load_verify_locations(
extract_zipped_paths(DEFAULT_CA_BUNDLE_PATH)
)


def _urllib3_request_context(
Expand Down