Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
lirshindalman committed Dec 24, 2024
1 parent 7f61759 commit e0ac659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions checkov/common/proxy/proxy_client.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
from typing import Any, Mapping
from typing import Any

import requests

Expand Down Expand Up @@ -35,7 +35,7 @@ def call_http_request_with_proxy(request: requests.Request) -> Any:
return proxy_client.send_request(request=request)


def get_proxy_envs() -> Mapping[str, str] | None:
def get_proxy_envs() -> dict[str, str] | None:
if os.getenv('PROXY_URL'):
proxy_env = os.environ.copy()
proxy_env["GIT_SSL_CAINFO"] = env_vars_config.PROXY_CA_PATH # Path to the CA cert
Expand Down

0 comments on commit e0ac659

Please sign in to comment.