diff --git a/docs/conf.py b/docs/conf.py index 4f2ebbd..638be4e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 @@ -34,19 +34,19 @@ # 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 ------------------------------------------------- @@ -54,19 +54,19 @@ # 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 }