We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ee3ad2 commit e7283b9Copy full SHA for e7283b9
src/anemoi/inference/commands/retrieve.py
@@ -16,7 +16,7 @@
16
from ..config import load_config
17
from ..inputs.grib import GribInput
18
from ..inputs.mars import postproc
19
-from ..runners.default import DefaultRunner
+from ..runners import create_runner
20
from . import Command
21
22
@@ -104,7 +104,7 @@ def run(self, args):
104
105
config = load_config(args.config, args.overrides, defaults=args.defaults)
106
107
- runner = DefaultRunner(config)
+ runner = create_runner(config)
108
109
# so that the user does not need to pass --extra target=path when the input file is already in the config
110
target = None
0 commit comments