Skip to content

Commit

Permalink
Correct signature for abstractish base methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwiker committed Dec 4, 2023
1 parent 0381cc1 commit dc1ac7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fmu/sumo/explorer/objects/_document_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit dc1ac7f

Please sign in to comment.