Merge pull request #1519 from pipecat-ai/mb/ref-docs-toc

Docs: Update ToC With Adapters and Observers
This commit is contained in:
Mark Backman
2025-04-03 15:19:35 -04:00
committed by GitHub
4 changed files with 96 additions and 21 deletions

View File

@@ -115,6 +115,9 @@ select = [
"D", # Docstring rules
"I", # Import rules
]
# We ignore D107 because class docstrings already document __init__ parameters
# and our Sphinx configuration uses napoleon_include_init_with_doc=True
ignore = ["D107"]
[tool.ruff.lint.pydocstyle]
convention = "google"