From c358d08abc11a941c6c308074aa7a57fe3370f7f Mon Sep 17 00:00:00 2001 From: Oliver Hensby Date: Wed, 21 Dec 2022 14:35:16 +0000 Subject: [PATCH] Removed fdir_root prefix to paths in inputs_show and outputs_show validators --- src/ipyrun/runshell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ipyrun/runshell.py b/src/ipyrun/runshell.py index 8a655f1..983a7c6 100644 --- a/src/ipyrun/runshell.py +++ b/src/ipyrun/runshell.py @@ -607,7 +607,7 @@ def _inputs_show(cls, v, values): fns_onsave=[values["update_status"]], ) paths = [ - values["config"].fdir_root / f for f in values["config"].fpths_inputs + f for f in values["config"].fpths_inputs ] return wrapped_partial( AutoDisplayInputs, @@ -622,7 +622,7 @@ def _outputs_show(cls, v, values): if values["config"] is not None and values["app"] is not None: AutoDisplayOutputs = update_AutoDisplay(values["config"]) paths = [ - values["config"].fdir_root / f for f in values["config"].fpths_outputs + f for f in values["config"].fpths_outputs ] return wrapped_partial( AutoDisplayOutputs,