File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -578,21 +578,21 @@ def read_parameters(self, model: Model) -> None:
578
578
579
579
# handle error checking and special cases:
580
580
if model .reserv .numseg .value > 1 :
581
- msg = " Warning: CLGS model can only handle a single layer gradient segment. Number of Segments set to 1, \
582
- Gradient set to Gradient[0], and Depth set to Reservoir Depth."
581
+ msg = ( ' Warning: CLGS model can only handle a single layer gradient segment. '
582
+ 'Number of Segments set to 1, Gradient set to Gradient[0], and Depth set to Reservoir Depth.' )
583
583
print (msg )
584
584
model .logger .warning (msg )
585
585
model .reserv .numseg .value = 1
586
586
587
587
if self .ninj .value > 0 :
588
- msg = " Warning: CLGS model considers the only the production wellbore parameters. Anything related to the \
589
- injection wellbore is ignored."
588
+ msg = ( ' Warning: CLGS model considers the only the production wellbore parameters. '
589
+ 'Anything related to the injection wellbore is ignored.' )
590
590
print (msg )
591
591
model .logger .warning (msg )
592
592
593
593
if self .nprod .value != 1 :
594
- msg = " Warning: CLGS model considers the only a single production wellbore (coaxial or uloop). \
595
- Number of production wellboreset set 1."
594
+ msg = ( ' Warning: CLGS model considers the only a single production wellbore (coaxial or uloop). '
595
+ ' Number of production wellboreset set 1.' )
596
596
print (msg )
597
597
model .logger .warning (msg )
598
598
You can’t perform that action at this time.
0 commit comments