Skip to content

Commit b9f637e

Browse files
authored
Merge pull request #1763 from OpenC3/fix_import_script_in_python_suite
Fix import script in python suite
2 parents 19152fc + ca6d3ce commit b9f637e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

openc3-cosmos-script-runner-api/scripts/run_suite_analysis.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ def load_utility(procedure_name):
4646
return False
4747

4848

49-
require_utility = load_utility
49+
setattr(openc3.script, "load_utility", load_utility)
50+
setattr(openc3.script, "require_utility", load_utility)
5051

5152
data = None
5253
with open(path) as file:

0 commit comments

Comments
 (0)