audebec
Results
1
issues of
audebec
I've implemented project parameters into my LCI and I can update them using the following code: ``` for param in ProjectParameter.select(): if param.name == 'Sample_Param': param.amount = 40.0 param.save() bw.parameters.recalculate()...