We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__init__.py
1 parent 4609599 commit 706f0d4Copy full SHA for 706f0d4
python_docs_theme/__init__.py
@@ -52,12 +52,11 @@ def _html_page_context(
52
53
def setup(app):
54
current_dir = os.path.abspath(os.path.dirname(__file__))
55
- app.add_html_theme(
56
- 'python_docs_theme', current_dir)
+ app.add_html_theme("python_docs_theme", current_dir)
57
58
app.connect("html-page-context", _html_page_context)
59
60
return {
61
- 'parallel_read_safe': True,
62
- 'parallel_write_safe': True,
+ "parallel_read_safe": True,
+ "parallel_write_safe": True,
63
}
0 commit comments