We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db2162f commit 1c013d3Copy full SHA for 1c013d3
python/agents/data-science/deployment/deploy.py
@@ -194,7 +194,7 @@ def main(argv: list[str]) -> None: # pylint: disable=unused-argument
194
skipped_vars = [] # List to collect skipped environment variable keys
195
for key in env_var_keys:
196
value = os.getenv(key)
197
- # Only add to env_vars if the value is not None, not empty, and not just whitespace
+ # Only add to env_vars if the value is not None/empty and not just whitespace
198
if value and value.strip():
199
env_vars[key] = value
200
else:
0 commit comments