Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
melmorabity committed Nov 19, 2023
1 parent f8559b2 commit 71b5bae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions helm_kubeconform/pre_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ def main(argv: list[str] | None = None) -> int:
"HELM_PLUGIN_VERSION": importlib.metadata.version("helm-kubeconform"),
# Ensure that the Kubeconform installation script has access to the
# network environment variables
"http_proxy": os.getenv("http_proxy", ""), # noqa: SIM112
"https_proxy": os.getenv("https_proxy", ""), # noqa: SIM112
"no_proxy": os.getenv("no_proxy", ""), # noqa: SIM112
"http_proxy": os.getenv("http_proxy", ""),
"https_proxy": os.getenv("https_proxy", ""),
"no_proxy": os.getenv("no_proxy", ""),
"HTTP_PROXY": os.getenv("HTTP_PROXY", ""),
"HTTPS_PROXY": os.getenv("HTTPS_PROXY", ""),
"NO_PROXY": os.getenv("NO_PROXY", ""),
Expand Down

0 comments on commit 71b5bae

Please sign in to comment.