Skip to content

Commit

Permalink
Merge pull request #23 from maxfordham/chdir-issue
Browse files Browse the repository at this point in the history
Removed fdir_root prefix to paths in inputs_show and outputs_show val…
  • Loading branch information
ollyhensby authored Dec 21, 2022
2 parents a5576f1 + c358d08 commit 97ab51e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ipyrun/runshell.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 97ab51e

Please sign in to comment.