Skip to content

Commit

Permalink
Add return type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindeide committed Nov 13, 2024
1 parent 4540d0d commit c5c693e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/everest/detached/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from ert.config.queue_config import (
LocalQueueOptions,
LsfQueueOptions,
QueueOptions,
SlurmQueueOptions,
TorqueQueueOptions,
)
Expand Down Expand Up @@ -311,7 +312,7 @@ def _find_res_queue_system(config: EverestConfig):
return QueueSystem(queue_system.upper())


def get_server_queue_options(config: EverestConfig):
def get_server_queue_options(config: EverestConfig) -> QueueOptions:
queue_system = _find_res_queue_system(config)

ever_queue_config = config.server if config.server is not None else config.simulator
Expand Down

0 comments on commit c5c693e

Please sign in to comment.