Skip to content

Commit c487785

Browse files
committed
Docs: Replace single quotes with double quotes
1 parent 48b883f commit c487785

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

docs/conf.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@
1212

1313
import os
1414
import sys
15-
sys.path.insert(0, os.path.abspath('..'))
15+
sys.path.insert(0, os.path.abspath(".."))
1616

1717

1818
# -- Project information -----------------------------------------------------
1919

20-
project = 'AutoHotkey.py'
21-
copyright = '2020 Sviatoslav Abakumov'
22-
author = 'Sviatoslav Abakumov'
20+
project = "AutoHotkey.py"
21+
copyright = "2020 Sviatoslav Abakumov"
22+
author = "Sviatoslav Abakumov"
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.1.dev'
25+
release = "0.1.dev"
2626

2727

2828
# -- General configuration ---------------------------------------------------
2929

3030
# Add any Sphinx extension module names here, as strings. They can be
31-
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
31+
# extensions coming with Sphinx (named "sphinx.ext.*") or your custom
3232
# ones.
3333
extensions = [
3434
"sphinx.ext.autodoc",
@@ -40,21 +40,21 @@
4040
}
4141

4242
# Add any paths that contain templates here, relative to this directory.
43-
templates_path = ['_templates']
43+
templates_path = ["_templates"]
4444

4545
# List of patterns, relative to source directory, that match files and
4646
# directories to ignore when looking for source files.
4747
# This pattern also affects html_static_path and html_extra_path.
48-
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
48+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
4949

50-
autodoc_member_order = 'bysource'
50+
autodoc_member_order = "bysource"
5151

5252

5353
# -- Options for HTML output -------------------------------------------------
5454

5555
# The theme to use for HTML and HTML Help pages. See the documentation for
5656
# a list of builtin themes.
57-
html_theme = 'alabaster'
57+
html_theme = "alabaster"
5858

5959
# Theme options are theme-specific and customize the look and feel of a theme
6060
# further. For a list of options available for each theme, see the
@@ -73,4 +73,4 @@
7373
# Add any paths that contain custom static files (such as style sheets) here,
7474
# relative to this directory. They are copied after the builtin static files,
7575
# so a file named "default.css" will overwrite the builtin "default.css".
76-
html_static_path = ['_static']
76+
html_static_path = ["_static"]

0 commit comments

Comments
 (0)