Skip to content

Commit 09390a8

Browse files
Mark backwards-compatible CCUS profile transform as FIXME TODO instead of WIP
1 parent 3acd94b commit 09390a8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/geophires_x_client/geophires_x_result.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,10 @@ def extract_table_header(lines: list) -> list:
538538
return None
539539

540540
def _get_ccus_profile(self):
541-
"""FIXME transform from Revenue & Cashflow profile if not present in output file"""
541+
"""
542+
FIXME TODO - transform from revenue & cashflow if present (CCUS profile replaced by revenue & cashflow
543+
profile in 49ff3a1213ac778ed53120626807e9a680d1ddcf)
544+
"""
542545

543546
def extract_table_header(lines: list) -> list:
544547
# Tried various regexy approaches to extract this programmatically but landed on hard-coding.
@@ -560,10 +563,7 @@ def extract_table_header(lines: list) -> list:
560563
return profile
561564
except BaseException as e:
562565
self._logger.debug(f'Failed to get CCUS profile: {e}')
563-
564-
# raise NotImplementedError('FIXME WIP - transform from REVENUE & CASHFLOW')
565-
self._logger.error('WIP - CCUS profile not implemented yet')
566-
# return None
566+
return None
567567

568568
def _extract_addons_style_table_data(self, lines: list):
569569
"""TODO consolidate with _get_data_from_profile_lines"""

0 commit comments

Comments
 (0)