Skip to content

Commit 7a40458

Browse files
fix miscellaneous docs build errors/warnings
1 parent ba267dc commit 7a40458

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

docs/reference/geophires_x.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ geophires_x
3636
.. automodule:: geophires_x.AGSWellBores
3737
:members:
3838

39-
.. automodule:: geophires_x.SBTWellBores
39+
.. automodule:: geophires_x.SBTWellbores
4040
:members:
4141

4242
.. automodule:: geophires_x.SUTRAWellBores
@@ -64,8 +64,5 @@ geophires_x
6464
.. automodule:: geophires_x.SUTRAEconomics
6565
:members:
6666

67-
.. automodule:: geophires_x.EconomicsCCUS
68-
:members:
69-
7067
.. automodule:: geophires_x.EconomicsAddOns
7168
:members:

src/geophires_x/Model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def __init__(self, enable_geophires_logging_config=True, input_file=None):
134134
elif self.InputParameters['Reservoir Model'].sValue in ['8', 'SBT']:
135135
self.logger.info('Setup the SBT elements of the Model and instantiate new attributes as needed')
136136
self.reserv: SBTReservoir = SBTReservoir(self)
137-
self.wellbores: SBTWellBores = SBTWellbores(self)
137+
self.wellbores: SBTWellbores = SBTWellbores(self)
138138
self.economics: SBTEconomics = SBTEconomics(self)
139139

140140
# Now handle the special cases for all AGS cases (CLGS, SBT, or CLGS)

src/geophires_x_schema_generator/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,9 @@ def get_input_params_table(_category_params, category_name) -> str:
282282
f'<{schema_ref_base_url}{self.get_output_schema_reference()}>`__'
283283
)
284284

285-
rst = f"""{self.get_schema_title()} Parameters
286-
==========
285+
display_title = f'{self.get_schema_title()} Parameters'
286+
rst = f"""{display_title}
287+
{'=' * len(display_title)}
287288
288289
.. contents::
289290
@@ -293,7 +294,7 @@ def get_input_params_table(_category_params, category_name) -> str:
293294
{input_rst}
294295
295296
Outputs
296-
#################
297+
#######
297298
{output_schema_ref_rst}
298299
{output_rst}
299300
"""

0 commit comments

Comments
 (0)