Skip to content

Commit

Permalink
fix: Fix export (#73)
Browse files Browse the repository at this point in the history
* feat: export ObjectIdField and AbstractRepository from module

* dev: added setuptools to dev requirements
  • Loading branch information
jochman authored Feb 19, 2024
1 parent 9ecb05d commit 564df68
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pydantic_mongo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from .abstract_repository import AbstractRepository # noqa
from .fields import ObjectIdField # noqa
from .version import __version__ # noqa
from .abstract_repository import AbstractRepository
from .fields import ObjectIdField
from .version import __version__ # noqa: F401

__all__ = ["ObjectIdField", "AbstractRepository"]
1 change: 1 addition & 0 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
mock
setuptools==69.0.3
coverage==7.4.0
flake8==6.1.0
phulpy==1.0.10
Expand Down

0 comments on commit 564df68

Please sign in to comment.