From a90823ebf5204a769203f375d2425a549a9a38dc Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Thu, 15 Aug 2024 09:56:49 -0700 Subject: [PATCH] Run Black over source/ --- source/conf.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/source/conf.py b/source/conf.py index 6151882..6708802 100644 --- a/source/conf.py +++ b/source/conf.py @@ -6,26 +6,26 @@ # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information -project = 'py_webauthn' -copyright = '2020, Duo Labs' -author = 'Duo Labs' -release = '2020' +project = "py_webauthn" +copyright = "2020, Duo Labs" +author = "Duo Labs" +release = "2020" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration -extensions = ['myst_parser'] +extensions = ["myst_parser"] -templates_path = ['_templates'] +templates_path = ["_templates"] exclude_patterns = [] - +html_copy_source = False # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output -html_theme = 'alabaster' -html_static_path = ['_static'] +html_theme = "alabaster" +html_static_path = ["_static"] # -- Extension Configuration - MyST Parser