diff options
| author | robot-piglet <[email protected]> | 2026-01-13 20:00:22 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2026-01-13 20:39:45 +0300 |
| commit | 8536dc8a9c8d8789ac420e018556f6f455d72483 (patch) | |
| tree | d25ea75a0df8a288a4b38dc68b9be04c656944c6 /library/python/testing | |
| parent | eaa0b46b02b858c0634646fbf28741f918f86eb9 (diff) | |
Intermediate changes
commit_hash:4caca7aaa95345680775ddf576c6642d73ebee70
Diffstat (limited to 'library/python/testing')
| -rw-r--r-- | library/python/testing/recipe/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/testing/recipe/__init__.py b/library/python/testing/recipe/__init__.py index 4b99979a290..ebfdbc22d32 100644 --- a/library/python/testing/recipe/__init__.py +++ b/library/python/testing/recipe/__init__.py @@ -79,7 +79,7 @@ def get_options(): def set_env(key, value): with open(ya.env_file, "a") as f: - json.dump({key: value}, f) + json.dump({key: str(value) if value is not None else None}, f) f.write("\n") |
