fixing pre-commit issues

This commit is contained in:
Raghu Murthy 2024-10-22 05:53:33 +05:30
parent b23cf84eb5
commit 68046e25a1

View file

@ -1,3 +1,9 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
# Configuration file for the Sphinx documentation builder. # Configuration file for the Sphinx documentation builder.
# #
# For the full list of built-in configuration values, see the documentation: # For the full list of built-in configuration values, see the documentation:
@ -6,17 +12,17 @@
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'llama-stack' project = "llama-stack"
copyright = '2024, Meta' copyright = "2024, Meta"
author = 'Meta' author = "Meta"
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#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 = ['_build', 'Thumbs.db', '.DS_Store'] exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
myst_enable_extensions = [ myst_enable_extensions = [
"amsmath", "amsmath",
@ -38,10 +44,10 @@ myst_enable_extensions = [
# -- Options for HTML output ------------------------------------------------- # -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'alabaster' html_theme = "alabaster"
html_theme_options = { html_theme_options = {
"canonical_url": "https://github.com/meta-llama/llama-stack", "canonical_url": "https://github.com/meta-llama/llama-stack",
} }
html_static_path = ['../_static'] html_static_path = ["../_static"]
html_logo = '../_static/llama-stack-logo.png' html_logo = "../_static/llama-stack-logo.png"