summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorKarl Ostmo <kostmo@fb.com>2019-02-15 13:46:11 -0800
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>2019-02-15 13:58:29 -0800
commiteba1b23ddda08bb0db306250db428ea937143082 (patch)
tree2c0fa7ca30d97c8f15c0da9d5d1f41b39135042f /.circleci
parent6454e3262d86c38dc602b54715101ef7d6ad6f2c (diff)
downloadpytorch-eba1b23ddda08bb0db306250db428ea937143082.tar.gz
pytorch-eba1b23ddda08bb0db306250db428ea937143082.tar.bz2
pytorch-eba1b23ddda08bb0db306250db428ea937143082.zip
Fix syntax error in set instantiation (#17174)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/17174 Use curly braces syntax to avoid Lint complaint Reviewed By: yf225 Differential Revision: D14111368 fbshipit-source-id: 44aa21deb9feededb94f23d92262a4164fe0cc1c
Diffstat (limited to '.circleci')
-rwxr-xr-x.circleci/generate-config-yml.py4
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):