Skip to content

Commit

Permalink
fix(python): fixed bug that was introduced in the previous relesase
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherpickering committed Aug 4, 2023
1 parent bb335eb commit 8ef1d3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runner/scripts/em_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ def run(self) -> Optional[List[Path]]:

# if output is not a file list, then swallow it.

if isinstance(eval(self.output), List):
return [Path(x) for x in eval(self.output)]
if isinstance(self.output, List):
return self.output
return None

def __build_env(self) -> None:
Expand Down

0 comments on commit 8ef1d3a

Please sign in to comment.