chore: Run black formatter on project files

Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
This commit is contained in:
Felix Matouschek
2024-02-29 14:06:16 +01:00
parent 4429ac8c03
commit 49638c31b5
3 changed files with 134 additions and 167 deletions

View File

@@ -15,19 +15,20 @@
import datetime
import os
import sys
sys.path.insert(0, os.path.abspath('../plugins/module_utils/'))
sys.path.insert(0, os.path.abspath("../plugins/module_utils/"))
# sys.path.insert(0, os.path.abspath('.'))
# -- Project information -----------------------------------------------------
project = 'Kubevirt Ansible Collection'
copyright = '{y} Red Hat, Inc.'.format(y=datetime.date.today().year)
author = 'Red Hat, Inc.'
project = "Kubevirt Ansible Collection"
copyright = "{y} Red Hat, Inc.".format(y=datetime.date.today().year)
author = "Red Hat, Inc."
# The short X.Y version
version = ''
version = ""
# The full version, including alpha/beta/rc tags
release = ''
release = ""
# -- General configuration ---------------------------------------------------
@@ -40,24 +41,24 @@ release = ''
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'myst_parser',
'sphinx.ext.autodoc',
'sphinx.ext.intersphinx',
'sphinx_antsibull_ext',
'ansible_basic_sphinx_ext',
"myst_parser",
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx_antsibull_ext",
"ansible_basic_sphinx_ext",
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = ['.rst', '.md']
source_suffix = [".rst", ".md"]
# The master toctree document.
master_doc = 'index'
master_doc = "index"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -69,20 +70,20 @@ language = None
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path .
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.tmp']
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", ".tmp"]
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'ansible'
pygments_style = "ansible"
highlight_language = 'YAML+Jinja'
highlight_language = "YAML+Jinja"
# -- Options for HTML output -------------------------------------------------
html_theme_path = ['_themes']
html_theme_path = ["_themes"]
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
# html_theme = 'alabaster'
html_theme = 'sphinx_rtd_theme'
html_theme = "sphinx_rtd_theme"
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
@@ -109,7 +110,7 @@ html_static_path = []
# -- Options for HTMLHelp output ---------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = 'KubevirtCollectionDoc'
htmlhelp_basename = "KubevirtCollectionDoc"
# -- Options for LaTeX output ------------------------------------------------
@@ -118,15 +119,12 @@ latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
@@ -136,8 +134,13 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'KubevirtCollection.tex', 'Red Hat Kubevirt Ansible Collection Documentation',
'Red Hat, Inc.', 'manual'),
(
master_doc,
"KubevirtCollection.tex",
"Red Hat Kubevirt Ansible Collection Documentation",
"Red Hat, Inc.",
"manual",
),
]
@@ -146,8 +149,13 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'KubevirtCollection', 'Red Hat Kubevirt Ansible Collection Documentation',
[author], 1)
(
master_doc,
"KubevirtCollection",
"Red Hat Kubevirt Ansible Collection Documentation",
[author],
1,
)
]
@@ -157,9 +165,15 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'KubevirtCollection', 'Red Hat Kubevirt Ansible Collection Documentation',
author, 'KubevirtCollection', 'One line description of project.',
'Miscellaneous'),
(
master_doc,
"KubevirtCollection",
"Red Hat Kubevirt Ansible Collection Documentation",
author,
"KubevirtCollection",
"One line description of project.",
"Miscellaneous",
),
]
@@ -168,4 +182,7 @@ texinfo_documents = [
# -- Options for intersphinx extension ---------------------------------------
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'python': ('https://docs.python.org/2', None), 'ansible': ('https://docs.ansible.com/ansible/latest/', None)}
intersphinx_mapping = {
"python": ("https://docs.python.org/2", None),
"ansible": ("https://docs.ansible.com/ansible/latest/", None),
}