Unverified Commit 2fd74f31 authored by Tim Dettmers's avatar Tim Dettmers Committed by GitHub
Browse files

Merge pull request #715 from xaptronic/main

Add env var related to google systems to ignored list
parents 9a0e10c4 09cd03d7
...@@ -20,6 +20,7 @@ def to_be_ignored(env_var: str, value: str) -> bool: ...@@ -20,6 +20,7 @@ def to_be_ignored(env_var: str, value: str) -> bool:
"PATH", # this is for finding binaries, not libraries "PATH", # this is for finding binaries, not libraries
"LESSOPEN", # related to the `less` command "LESSOPEN", # related to the `less` command
"LESSCLOSE", "LESSCLOSE",
"GOOGLE_VM_CONFIG_LOCK_FILE", # Google Cloud stuff, contains root only paths
"_", # current Python interpreter "_", # current Python interpreter
} }
return env_var in ignorable return env_var in ignorable
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment