Skip to content

Commit

Permalink
Fix typing for batching interval
Browse files Browse the repository at this point in the history
  • Loading branch information
JHolba committed Nov 14, 2024
1 parent 1b235cf commit fd6fa05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/ensemble_evaluator/evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def __init__(self, ensemble: Ensemble, config: EvaluatorServerConfig):
List[Tuple[EVENT_HANDLER, Event]]
] = asyncio.Queue()
self._max_batch_size: int = 500
self._batching_interval: int = 2
self._batching_interval: float = 2.0
self._complete_batch: asyncio.Event = asyncio.Event()

async def _publisher(self) -> None:
Expand Down

0 comments on commit fd6fa05

Please sign in to comment.