diff --git a/src/maggma/stores/__init__.py b/src/maggma/stores/__init__.py index 1c72bad4d..df80c8825 100644 --- a/src/maggma/stores/__init__.py +++ b/src/maggma/stores/__init__.py @@ -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", @@ -27,4 +33,5 @@ "MemoryStore", "MongoStore", "MongoURIStore", + "MontyStore", ]