We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 638d943 commit 4a89fb4Copy full SHA for 4a89fb4
tests/geophires_x_tests/test_fervo_project_cape_4.py
@@ -102,7 +102,7 @@ def _parse_value_unit(raw_string: str) -> dict:
102
value_ = float(match.group(1))
103
return {'value': value_, 'unit': 'degC'}
104
105
- # Case 7: Scientific notation format (X.X×10⁶ Y) # ruff: noqa: RUF003
+ # Case 7: Scientific notation format (X.Xx10⁶ Y)
106
match = re.match(r'^(\d+\.?\d*)\s*[×xX]\s*10[⁶6]\s*(.*)$', clean_str)
107
if match:
108
base_value = float(match.group(1))
0 commit comments