We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f042cf5 commit 5af65e4Copy full SHA for 5af65e4
doc/exts/pylint_features.py
@@ -40,9 +40,9 @@ def builder_inited(app: Sphinx | None) -> None:
40
print_full_documentation(linter, stream, False)
41
42
43
-def setup(app: Sphinx) -> dict[str, str]:
+def setup(app: Sphinx) -> dict[str, str | bool]:
44
app.connect("builder-inited", builder_inited)
45
- return {"version": sphinx.__display_version__}
+ return {"version": sphinx.__display_version__, "parallel_read_safe": True}
46
47
48
if __name__ == "__main__":
0 commit comments