Skip to content

Commit

Permalink
Made script run return results (used for testing)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuiMacielPereira committed Jan 3, 2024
1 parent fa87518 commit b328c8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mvesuvio/analysis_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def run(yes_to_all=False):
bootIC = ai.BootstrapInitialConditions
userCtr = ai.UserScriptControls

runScript(
scattResults, yFitResults = runScript(
userCtr,
scriptName,
wsBackIC,
Expand All @@ -41,6 +41,7 @@ def run(yes_to_all=False):

end_time = time.time()
print("\nRunning time: ", end_time - start_time, " seconds")
return scattResults, yFitResults


def import_from_path(path, name):
Expand Down

0 comments on commit b328c8b

Please sign in to comment.