Skip to content

Commit

Permalink
Mypy fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
xjules committed Jan 15, 2025
1 parent 624f6a4 commit d7a59ff
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 @@ -64,7 +64,7 @@ def __init__(self, ensemble: Ensemble, config: EvaluatorServerConfig):
self._max_batch_size: int = 500
self._batching_interval: float = 2.0
self._complete_batch: asyncio.Event = asyncio.Event()
self._server_started: asyncio.Future = asyncio.Future()
self._server_started: asyncio.Future[None] = asyncio.Future()
self._clients_connected: set[bytes] = set()
self._clients_empty: asyncio.Event = asyncio.Event()
self._clients_empty.set()
Expand Down

0 comments on commit d7a59ff

Please sign in to comment.