Skip to content

Commit

Permalink
Fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Nov 27, 2024
1 parent 9a4a6df commit 771bf2d
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

# -- Project information -----------------------------------------------------

project = 'Faker Wi-Fi ESSID'
copyright = '2022, Paul-Emmanuel Raoul'
author = 'Paul-Emmanuel Raoul'
project = "Faker Wi-Fi ESSID"
copyright = "2022, Paul-Emmanuel Raoul"
author = "Paul-Emmanuel Raoul"

# The full version, including alpha/beta/rc tags
release = VERSION
Expand All @@ -34,39 +34,39 @@
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
"sphinx.ext.autodoc",
]

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

# The master toctree document.
master_doc = 'index'
master_doc = "index"

# 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']
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]


# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'
html_theme = "sphinx_rtd_theme"

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ["_static"]

# -- Options for GitHub integration -------------------------------------------

html_context = {
'display_github': True, # Integrate GitHub
'github_user': 'SkypLabs', # Username
'github_repo': 'faker-wifi-essid', # Repo name
'github_version': 'develop', # Version
'conf_py_path': '/docs/', # Path in the checkout to the docs root
"display_github": True, # Integrate GitHub
"github_user": "SkypLabs", # Username
"github_repo": "faker-wifi-essid", # Repo name
"github_version": "develop", # Version
"conf_py_path": "/docs/", # Path in the checkout to the docs root
}

0 comments on commit 771bf2d

Please sign in to comment.