Skip to content

Commit 8108d71

Browse files
temporarily strip out settings from quickrun output
1 parent 0b09743 commit 8108d71

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

openfecli/commands/quickrun.py

+5
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ def quickrun(transformation, directory, output):
6464
else:
6565
estimate = uncertainty = None # for output file
6666

67+
# TODO: remove this ugly hack on next release
68+
# strip out Settings objects in each unit_result inputs dict
69+
for _, dd in out_dict['unit_results'].items():
70+
dd['inputs'].pop('settings')
71+
6772
out_dict = {
6873
'estimate': estimate,
6974
'uncertainty': uncertainty,

0 commit comments

Comments
 (0)