Skip to content

Commit 1c013d3

Browse files
Update python/agents/data-science/deployment/deploy.py
Co-authored-by: Copilot <[email protected]>
1 parent db2162f commit 1c013d3

File tree

1 file changed

+1
-1
lines changed
  • python/agents/data-science/deployment

1 file changed

+1
-1
lines changed

python/agents/data-science/deployment/deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def main(argv: list[str]) -> None: # pylint: disable=unused-argument
194194
skipped_vars = [] # List to collect skipped environment variable keys
195195
for key in env_var_keys:
196196
value = os.getenv(key)
197-
# Only add to env_vars if the value is not None, not empty, and not just whitespace
197+
# Only add to env_vars if the value is not None/empty and not just whitespace
198198
if value and value.strip():
199199
env_vars[key] = value
200200
else:

0 commit comments

Comments
 (0)