Skip to content

Commit

Permalink
refactor: use black-standard double quotes
Browse files Browse the repository at this point in the history
The community has converged on double-quotes. Using single quotes is
like swimming upstream. Stop swimming upstream.
  • Loading branch information
jpgrayson committed Nov 10, 2024
1 parent 91a0ce4 commit 417e106
Show file tree
Hide file tree
Showing 10 changed files with 1,026 additions and 1,027 deletions.
56 changes: 28 additions & 28 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,57 +9,57 @@
from setuptools_scm import get_version

extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.coverage',
'sphinx.ext.viewcode',
'sphinx.ext.intersphinx',
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.coverage",
"sphinx.ext.viewcode",
"sphinx.ext.intersphinx",
]

autodoc_member_order = 'bysource'
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = 'pyvcd'
copyright = '2021, Western Digital Corporation'
author = 'Peter Grayson and Steven Sprouse'
version = get_version(root='..', relative_to=__file__)
autodoc_member_order = "bysource"
templates_path = ["_templates"]
source_suffix = ".rst"
master_doc = "index"
project = "pyvcd"
copyright = "2021, Western Digital Corporation"
author = "Peter Grayson and Steven Sprouse"
version = get_version(root="..", relative_to=__file__)
# release = '0.0.1'
language = 'en'
exclude_patterns = ['_build']
pygments_style = 'sphinx'
language = "en"
exclude_patterns = ["_build"]
pygments_style = "sphinx"
todo_include_todos = False

# Options for HTML output
html_theme = 'sphinx_rtd_theme'
html_theme = "sphinx_rtd_theme"
# html_static_path = ['_static']
htmlhelp_basename = 'pyvcddoc'
htmlhelp_basename = "pyvcddoc"

# Options for LaTeX output

latex_elements = {}
latex_documents = [
(
master_doc,
'pyvcd.tex',
'pyvcd Documentation',
'Peter Grayson and Steven Sprouse',
'manual',
"pyvcd.tex",
"pyvcd Documentation",
"Peter Grayson and Steven Sprouse",
"manual",
),
]

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

# Options for Texinfo output
texinfo_documents = [
(
master_doc,
'pyvcd',
'pyvcd Documentation',
"pyvcd",
"pyvcd Documentation",
author,
'pyvcd',
'One line description of project.',
'Miscellaneous',
"pyvcd",
"One line description of project.",
"Miscellaneous",
),
]
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
target-version = ["py37"]
skip-string-normalization = true
exclude = '''
(
^\/\..*$
Expand Down
Loading

0 comments on commit 417e106

Please sign in to comment.