Skip to content

Commit d464ebd

Browse files
committed
Fix code style issues with Black
1 parent 2501d5c commit d464ebd

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

docs/conf.py

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
sys.path.append(os.path.abspath("extensions"))
2525

2626
on_rtd = os.environ.get("READTHEDOCS") == "True"
27-
project = 'TwitchIO'
28-
copyright = '2021, TwitchIO'
29-
author = 'TwitchIO'
27+
project = "TwitchIO"
28+
copyright = "2021, TwitchIO"
29+
author = "TwitchIO"
3030

3131
# The full version, including alpha/beta/rc tags
32-
release = '2.1.3'
32+
release = "2.1.3"
3333

3434

3535
# -- General configuration ---------------------------------------------------
@@ -46,21 +46,21 @@
4646
]
4747

4848
# Add any paths that contain templates here, relative to this directory.
49-
templates_path = ['_templates']
49+
templates_path = ["_templates"]
5050

5151
# List of patterns, relative to source directory, that match files and
5252
# directories to ignore when looking for source files.
5353
# This pattern also affects html_static_path and html_extra_path.
54-
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
54+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
5555

5656

5757
# -- Options for HTML output -------------------------------------------------
5858

5959
# The theme to use for HTML and HTML Help pages. See the documentation for
6060
# a list of builtin themes.
6161
#
62-
html_theme = 'furo'
63-
#html_logo = "logo.png"
62+
html_theme = "furo"
63+
# html_logo = "logo.png"
6464

6565
html_theme_options = {
6666
"sidebar_hide_name": True,
@@ -72,13 +72,11 @@
7272
# relative to this directory. They are copied after the builtin static files,
7373
# so a file named "default.css" will overwrite the builtin "default.css".
7474
# These folders are copied to the documentation's HTML output
75-
html_static_path = ['_static']
75+
html_static_path = ["_static"]
7676

7777
# These paths are either relative to html_static_path
7878
# or fully qualified paths (eg. https://...)
79-
html_css_files = [
80-
'css/custom.css'
81-
]
79+
html_css_files = ["css/custom.css"]
8280

8381
if on_rtd:
8482
extensions.append("sphinxcontrib.napoleon")

0 commit comments

Comments
 (0)