Skip to content

Commit 417e106

Browse files
committed
refactor: use black-standard double quotes
The community has converged on double-quotes. Using single quotes is like swimming upstream. Stop swimming upstream.
1 parent 91a0ce4 commit 417e106

File tree

10 files changed

+1026
-1027
lines changed

10 files changed

+1026
-1027
lines changed

docs/conf.py

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -9,57 +9,57 @@
99
from setuptools_scm import get_version
1010

1111
extensions = [
12-
'sphinx.ext.autodoc',
13-
'sphinx.ext.autosummary',
14-
'sphinx.ext.coverage',
15-
'sphinx.ext.viewcode',
16-
'sphinx.ext.intersphinx',
12+
"sphinx.ext.autodoc",
13+
"sphinx.ext.autosummary",
14+
"sphinx.ext.coverage",
15+
"sphinx.ext.viewcode",
16+
"sphinx.ext.intersphinx",
1717
]
1818

19-
autodoc_member_order = 'bysource'
20-
templates_path = ['_templates']
21-
source_suffix = '.rst'
22-
master_doc = 'index'
23-
project = 'pyvcd'
24-
copyright = '2021, Western Digital Corporation'
25-
author = 'Peter Grayson and Steven Sprouse'
26-
version = get_version(root='..', relative_to=__file__)
19+
autodoc_member_order = "bysource"
20+
templates_path = ["_templates"]
21+
source_suffix = ".rst"
22+
master_doc = "index"
23+
project = "pyvcd"
24+
copyright = "2021, Western Digital Corporation"
25+
author = "Peter Grayson and Steven Sprouse"
26+
version = get_version(root="..", relative_to=__file__)
2727
# release = '0.0.1'
28-
language = 'en'
29-
exclude_patterns = ['_build']
30-
pygments_style = 'sphinx'
28+
language = "en"
29+
exclude_patterns = ["_build"]
30+
pygments_style = "sphinx"
3131
todo_include_todos = False
3232

3333
# Options for HTML output
34-
html_theme = 'sphinx_rtd_theme'
34+
html_theme = "sphinx_rtd_theme"
3535
# html_static_path = ['_static']
36-
htmlhelp_basename = 'pyvcddoc'
36+
htmlhelp_basename = "pyvcddoc"
3737

3838
# Options for LaTeX output
3939

4040
latex_elements = {}
4141
latex_documents = [
4242
(
4343
master_doc,
44-
'pyvcd.tex',
45-
'pyvcd Documentation',
46-
'Peter Grayson and Steven Sprouse',
47-
'manual',
44+
"pyvcd.tex",
45+
"pyvcd Documentation",
46+
"Peter Grayson and Steven Sprouse",
47+
"manual",
4848
),
4949
]
5050

5151
# Options for manual page output
52-
man_pages = [(master_doc, 'pyvcd', 'pyvcd Documentation', [author], 1)]
52+
man_pages = [(master_doc, "pyvcd", "pyvcd Documentation", [author], 1)]
5353

5454
# Options for Texinfo output
5555
texinfo_documents = [
5656
(
5757
master_doc,
58-
'pyvcd',
59-
'pyvcd Documentation',
58+
"pyvcd",
59+
"pyvcd Documentation",
6060
author,
61-
'pyvcd',
62-
'One line description of project.',
63-
'Miscellaneous',
61+
"pyvcd",
62+
"One line description of project.",
63+
"Miscellaneous",
6464
),
6565
]

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ build-backend = "setuptools.build_meta"
77
[tool.black]
88
line-length = 88
99
target-version = ["py37"]
10-
skip-string-normalization = true
1110
exclude = '''
1211
(
1312
^\/\..*$

0 commit comments

Comments
 (0)