Skip to content

Commit ae4e772

Browse files
strip inaccurate/misleading result category unit suffixes in output rst
1 parent f64e046 commit ae4e772

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/geophires_x_schema_generator/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ def get_output_params_table_rst(self, output_params_json) -> str:
283283

284284
def get_output_params_table(_category_params, category_name) -> str:
285285
category_display = category_name if category_name is not None else ''
286+
category_display = category_display.replace(' (M$)', '').replace(' (M$/yr)', '')
286287
_output_rst = f"""
287288
{category_display}
288289
{'-' * len(category_display)}

0 commit comments

Comments
 (0)