diff --git a/agents/agent1/docs/source/conf.py b/agents/agent1/docs/source/conf.py index 9a5b180..9456205 100644 --- a/agents/agent1/docs/source/conf.py +++ b/agents/agent1/docs/source/conf.py @@ -76,7 +76,7 @@ def _get_project_version(default: str = "0.0.0") -> str: if tomllib is not None: # Only enable when the TOML parser (and therefore the extension's deps) is available. # Import is intentionally unused; it fails fast if the dependency stack is missing. - import sphinx_autodoc_typehints # noqa: F401 # pyright: ignore[reportUnusedImport] + import sphinx_autodoc_typehints # noqa: F401 # pyright: ignore[reportUnusedImport,reportMissingImports] extensions.append("sphinx_autodoc_typehints") except Exception: diff --git a/docs/source/conf.py b/docs/source/conf.py index 0d7f972..ffd8206 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -59,7 +59,7 @@ def _get_project_version(default: str = "0.0.0") -> str: if tomllib is not None: # Only enable when the TOML parser (and therefore the extension's deps) is available. # Import is intentionally unused; it fails fast if the dependency stack is missing. - import sphinx_autodoc_typehints # noqa: F401 # pyright: ignore[reportUnusedImport] + import sphinx_autodoc_typehints # noqa: F401 # pyright: ignore[reportUnusedImport,reportMissingImports] extensions.append("sphinx_autodoc_typehints") except Exception: