Skip to content

Commit 4a89fb4

Browse files
Fix apparently-windows-incompatible unicode character in comment (thus revealing why ruff's complaint about it was valid - https://github.com/softwareengineerprogrammer/GEOPHIRES/actions/runs/15786817152/job/44504920698)
1 parent 638d943 commit 4a89fb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/geophires_x_tests/test_fervo_project_cape_4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def _parse_value_unit(raw_string: str) -> dict:
102102
value_ = float(match.group(1))
103103
return {'value': value_, 'unit': 'degC'}
104104

105-
# Case 7: Scientific notation format (X.X×10⁶ Y) # ruff: noqa: RUF003
105+
# Case 7: Scientific notation format (X.Xx10⁶ Y)
106106
match = re.match(r'^(\d+\.?\d*)\s*[×xX]\s*10[⁶6]\s*(.*)$', clean_str)
107107
if match:
108108
base_value = float(match.group(1))

0 commit comments

Comments
 (0)