Skip to content

Commit

Permalink
Fix filename on python sample output.
Browse files Browse the repository at this point in the history
  • Loading branch information
lPrimemaster committed Jul 8, 2024
1 parent 20badd5 commit 7f132d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nested_py/nested_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def sample(self, path='.', disablebar=False, disable_output=False):
pbar.close()

if not disable_output:
with open(f'{path}/output_res.json', 'r') as f:
with open(f'{path}/nf_output_res.json', 'r') as f:
return json.load(f)
return None

Expand Down

0 comments on commit 7f132d3

Please sign in to comment.