Skip to content

Commit 706f0d4

Browse files
committed
Use double quotation marks in __init__.py
1 parent 4609599 commit 706f0d4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

python_docs_theme/__init__.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,11 @@ def _html_page_context(
5252

5353
def setup(app):
5454
current_dir = os.path.abspath(os.path.dirname(__file__))
55-
app.add_html_theme(
56-
'python_docs_theme', current_dir)
55+
app.add_html_theme("python_docs_theme", current_dir)
5756

5857
app.connect("html-page-context", _html_page_context)
5958

6059
return {
61-
'parallel_read_safe': True,
62-
'parallel_write_safe': True,
60+
"parallel_read_safe": True,
61+
"parallel_write_safe": True,
6362
}

0 commit comments

Comments
 (0)