From dc1ac7f1c4ec245134cb687ca515c5d973250ca5 Mon Sep 17 00:00:00 2001 From: Raymond Wiker Date: Mon, 4 Dec 2023 09:17:34 +0100 Subject: [PATCH] Correct signature for abstractish base methods. --- src/fmu/sumo/explorer/objects/_document_collection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fmu/sumo/explorer/objects/_document_collection.py b/src/fmu/sumo/explorer/objects/_document_collection.py index 6d92c99d..daca736b 100644 --- a/src/fmu/sumo/explorer/objects/_document_collection.py +++ b/src/fmu/sumo/explorer/objects/_document_collection.py @@ -245,10 +245,10 @@ async def _next_batch_async(self) -> List[Dict]: return len(hits["hits"]) - def _postprocess_batch(self, hits): + def _postprocess_batch(self, hits, pit): return - async def _postprocess_batch_async(self, hits): + async def _postprocess_batch_async(self, hits, pit): return def _init_query(self, doc_type: str, query: Dict = None) -> Dict: