We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c2440d commit 1eff9ceCopy full SHA for 1eff9ce
xcube/core/store/store.py
@@ -28,7 +28,7 @@ def new_data_store(
28
data_store_id: str,
29
extension_registry: Optional[ExtensionRegistry] = None,
30
**data_store_params,
31
-) -> Union["DataStore", "MutableDataStore"]:
+) -> Union["DataStore", "MutableDataStore", "PreloadDataStore"]:
32
"""Create a new data store instance for given
33
*data_store_id* and *data_store_params*.
34
@@ -691,7 +691,7 @@ def deregister_data(self, data_id: str):
691
"""
692
693
694
-class PreloadDataStore(DataStore):
+class PreloadDataStore(MutableDataStore):
695
"""A preload data store is a multable data store which contains the preload handle.
696
697
Instances of this class are returned by the ``DataStore.preload_data()`` method.
0 commit comments