From 0ffff23807f4dd30a7af13ac2ecbceda64ee6457 Mon Sep 17 00:00:00 2001 From: "Andrew S. Rosen" Date: Sun, 9 Jul 2023 15:26:29 -0700 Subject: [PATCH 1/2] Update __init__.py --- src/maggma/stores/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/maggma/stores/__init__.py b/src/maggma/stores/__init__.py index 1c72bad4d..f2b04201f 100644 --- a/src/maggma/stores/__init__.py +++ b/src/maggma/stores/__init__.py @@ -10,7 +10,7 @@ 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 +27,5 @@ "MemoryStore", "MongoStore", "MongoURIStore", + "MontyStore", ] From dea9920f8c8cb7fd1e0730c0d4f5459d4ac7a366 Mon Sep 17 00:00:00 2001 From: "Andrew S. Rosen" Date: Sun, 9 Jul 2023 17:50:26 -0700 Subject: [PATCH 2/2] Update __init__.py --- src/maggma/stores/__init__.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/maggma/stores/__init__.py b/src/maggma/stores/__init__.py index f2b04201f..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, MontyStore +from maggma.stores.mongolike import ( + JSONStore, + MemoryStore, + MongoStore, + MongoURIStore, + MontyStore, +) __all__ = [ "Store",