diff options
Diffstat (limited to '.circleci')
-rwxr-xr-x | .circleci/generate-config-yml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/generate-config-yml.py b/.circleci/generate-config-yml.py index ce65b27388..c6daa71bcf 100755 --- a/.circleci/generate-config-yml.py +++ b/.circleci/generate-config-yml.py @@ -107,12 +107,12 @@ def is_dict_like(data): return type(data) is dict or type(data) is OrderedDict -FORCED_QUOTED_VALUE_KEYS = set( +FORCED_QUOTED_VALUE_KEYS = { "DOCKER_IMAGE", "PYTHON_VERSION", "USE_CUDA_DOCKER_RUNTIME", "MULTI_GPU", -) +} def render_yaml(key, data, fh, depth=0): |