Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
xjules committed Sep 5, 2024
1 parent b9f0488 commit 549253b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/run_models/base_run_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ async def run_monitor(
):
event = cast(Union[EESnapshot, EESnapshotUpdate], event)
with ThreadPoolExecutor() as pool:
await asyncio.get_running_loop.run_in_executor(
await asyncio.get_running_loop().run_in_executor(
pool, self.send_snapshot_event(event, iteration)

Check failure on line 453 in src/ert/run_models/base_run_model.py

View workflow job for this annotation

GitHub Actions / type-checking (3.12)

"send_snapshot_event" of "BaseRunModel" does not return a value (it only ever returns None)
)

Expand Down

0 comments on commit 549253b

Please sign in to comment.