Skip to content
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

fix datamodel imports #1367

Merged
merged 1 commit into from
Jan 2, 2025
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
2 changes: 1 addition & 1 deletion asyncdb/models/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from dataclasses import _MISSING_TYPE, MISSING, is_dataclass, make_dataclass
from numpy import int64
from datamodel import BaseModel, Field
from datamodel.base import Meta
from datamodel.abstract import Meta
from datamodel.exceptions import ValidationError
from datamodel.types import MODEL_TYPES, DB_TYPES

Expand Down
2 changes: 1 addition & 1 deletion asyncdb/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__title__ = "asyncdb"
__description__ = "Library for Asynchronous data source connections \
Collection of asyncio drivers."
__version__ = "2.9.10"
__version__ = "2.9.11"
__author__ = "Jesus Lara"
__author_email__ = "[email protected]"
__license__ = "BSD"