We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b44ac93 commit a7b2867Copy full SHA for a7b2867
1 file changed
plugboard/cli/process/__init__.py
@@ -129,7 +129,8 @@ def tune(
129
) -> None:
130
"""Optimise a Plugboard process by adjusting its tunable parameters."""
131
config_spec = _read_yaml(config)
132
- tuner = _build_tuner(config_spec)
+ with add_sys_path(config.parent):
133
+ tuner = _build_tuner(config_spec)
134
135
with Progress(
136
SpinnerColumn("arrow3"),
0 commit comments