Skip to content

Commit

Permalink
Disable autodoc_pydantic for now
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterKraus committed Jul 15, 2024
1 parent 640bfdf commit c80a6c4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
# "sphinx.ext.autosummary",
# "sphinx_autodoc_typehints",
"sphinx_rtd_theme",
"sphinxcontrib.autodoc_pydantic",
# "sphinxcontrib.autodoc_pydantic",
"sphinxcontrib.mermaid",
]

Expand Down
6 changes: 5 additions & 1 deletion src/tomato/drivers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
"""
Driver documentation goes here.
**tomato.drivers**: Shim interfacing with tomato driver packages
----------------------------------------------------------------
.. codeauthor::
Peter Kraus
"""

import importlib
Expand Down
6 changes: 6 additions & 0 deletions src/tomato/models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
**tomato.models**: Pydantic models for internal tomato use
----------------------------------------------------------
.. codeauthor::
Peter Kraus
"""
from pydantic import BaseModel, Field
from typing import Optional, Any, Mapping, Sequence, Literal
from pathlib import Path
Expand Down

0 comments on commit c80a6c4

Please sign in to comment.