Skip to content

Commit 9e0dfa3

Browse files
committed
Fix set union
1 parent 7daf421 commit 9e0dfa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
with open(PROJECT_ROOT / "tools/tool-data.toml", "rb") as f:
189189
numpydoc_skip_errors = tomllib.load(f)["numpydoc_skip_errors"]
190190

191-
numpydoc_validation_checks = {"all"} + set(numpydoc_skip_errors)
191+
numpydoc_validation_checks = {"all"} | set(numpydoc_skip_errors)
192192

193193
# Add any paths that contain custom static files (such as style sheets) here,
194194
# relative to this directory. They are copied after the builtin static files,

0 commit comments

Comments
 (0)