Skip to content

Commit e3dea21

Browse files
authored
Merge pull request #303 from lsst/tickets/DM-46776
DM-46776: Add new ingest_zip method required to Datastore
2 parents 37f1c52 + b86db4f commit e3dea21

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

python/lsst/analysis/tools/interfaces/datastore/_sasquatchDatastore.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,9 @@ def getURI(self, datasetRef: DatasetRef, predict: bool = False) -> ResourcePath:
259259
def getURIs(self, datasetRef: DatasetRef, predict: bool = False) -> DatasetRefURIs:
260260
raise NotImplementedError()
261261

262+
def ingest_zip(self, zip_path: ResourcePath, transfer: str | None) -> None:
263+
raise NotImplementedError()
264+
262265
def retrieveArtifacts(
263266
self,
264267
refs: Iterable[DatasetRef],

0 commit comments

Comments
 (0)