File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1009,9 +1009,9 @@ def __init__(self, model: Model):
1009
1009
for it in WellDrillingCostCorrelation ]) +
1010
1010
f'. '
1011
1011
f'Baseline correlations (1-4) are from '
1012
- f'{ _WellDrillingCostCorrelationCitation .NREL_COST_CURVE_2025 } .'
1012
+ f'{ _WellDrillingCostCorrelationCitation .NREL_COST_CURVE_2025 . value } .'
1013
1013
f' Intermediate and ideal correlations (6-17) are from '
1014
- f'{ _WellDrillingCostCorrelationCitation .GEOVISION } .'
1014
+ f'{ _WellDrillingCostCorrelationCitation .GEOVISION . value } .'
1015
1015
1016
1016
)
1017
1017
self .DoAddOnCalculations = self .ParameterDict [self .DoAddOnCalculations .Name ] = boolParameter (
Original file line number Diff line number Diff line change 1
1
# copyright, 2023, Malcolm I Ross
2
2
3
- from enum import Enum , StrEnum
3
+ from enum import Enum
4
4
5
5
6
6
class GeophiresInputEnum (str , Enum ):
@@ -156,7 +156,7 @@ def from_input_string(input_string: str):
156
156
raise ValueError (f'Unknown Reservoir Volume input value: { input_string } ' )
157
157
158
158
159
- class _WellDrillingCostCorrelationCitation (StrEnum ):
159
+ class _WellDrillingCostCorrelationCitation (str , Enum ):
160
160
"""
161
161
Values are abbreviated citations used in tooltip text.
162
162
Commented full citations are present in CHANGELOG and could also be used in future documentation.
You can’t perform that action at this time.
0 commit comments