Skip to content

Commit

Permalink
Merge pull request #819 from arosen93/patch-1
Browse files Browse the repository at this point in the history
Add `MontyStore` to `maggma.stores.__init__`
  • Loading branch information
munrojm committed Jul 10, 2023
2 parents 23a0e90 + dea9920 commit 19db18a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/maggma/stores/__init__.py
Expand Up @@ -10,7 +10,13 @@
from maggma.stores.azure import AzureBlobStore
from maggma.stores.compound_stores import ConcatStore, JointStore
from maggma.stores.gridfs import GridFSStore
from maggma.stores.mongolike import JSONStore, MemoryStore, MongoStore, MongoURIStore
from maggma.stores.mongolike import (
JSONStore,
MemoryStore,
MongoStore,
MongoURIStore,
MontyStore,
)

__all__ = [
"Store",
Expand All @@ -27,4 +33,5 @@
"MemoryStore",
"MongoStore",
"MongoURIStore",
"MontyStore",
]

0 comments on commit 19db18a

Please sign in to comment.