Skip to content

Fix error with the reference docs not being rendered #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion docs/reference.md
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
::: pydantic_redis
::: pydantic_redis
handler: python
options:
show_root_heading: true
members: []


::: pydantic_redis.syncio
handler: python
options:
show_root_heading: true


::: pydantic_redis.asyncio
handler: python
options:
show_root_heading: true
2 changes: 1 addition & 1 deletion pydantic_redis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
from pydantic_redis.syncio import Store, Model, RedisConfig
import pydantic_redis.asyncio

__all__ = [Store, RedisConfig, Model, asyncio]
__all__ = ["Store", "RedisConfig", "Model", "asyncio"]

__version__ = "0.5.0"
2 changes: 1 addition & 1 deletion pydantic_redis/asyncio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ async def main():
from .store import Store
from ..config import RedisConfig

__all__ = [Model, Store, RedisConfig]
__all__ = ["Model", "Store", "RedisConfig"]
2 changes: 1 addition & 1 deletion pydantic_redis/syncio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ class Book(Model):
from .store import Store
from ..config import RedisConfig

__all__ = [Model, Store, RedisConfig]
__all__ = ["Model", "Store", "RedisConfig"]