Priority:Lowgood first issuemodels_extra
Repository metrics
- Stars
- (330 stars)
- PR merge metrics
- (PR metrics pending)
Description
As noted in #1613 , get_prop for the natural_gas_pr.py properties in models_extra incorrectly writes:
if components is None:
components = list(_component_params.keys())
for the default components. The correct statement is
if components is None:
components = list( comp for comp in _component_params.keys())
This error should be remedied and a test should be added.