From f2d0608f2ae4a35d35b3a2320808a331b1c384a9 Mon Sep 17 00:00:00 2001 From: Andy Salnikov Date: Tue, 17 Oct 2023 10:39:02 -0700 Subject: [PATCH] Apply review suggestions Co-authored-by: Jim Bosch --- python/lsst/daf/butler/datastore/_datastore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/daf/butler/datastore/_datastore.py b/python/lsst/daf/butler/datastore/_datastore.py index 271b8af7fe..7ed2692d8f 100644 --- a/python/lsst/daf/butler/datastore/_datastore.py +++ b/python/lsst/daf/butler/datastore/_datastore.py @@ -554,7 +554,7 @@ def put(self, inMemoryDataset: Any, datasetRef: DatasetRef) -> None: raise NotImplementedError("Must be implemented by subclass") @abstractmethod - def put_new(self, inMemoryDataset: Any, datasetRef: DatasetRef) -> Mapping[str, DatasetRef]: + def put_new(self, in_memory_dataset: Any, dataset_ref: DatasetRef) -> Mapping[str, DatasetRef]: """Write a `InMemoryDataset` with a given `DatasetRef` to the store. Parameters