Skip to content

Commit 009c85a

Browse files
Add missing space in error message
1 parent b9eba13 commit 009c85a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/geophires_x/GeoPHIRESUtils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def heat_capacity_water_J_per_kg_per_K(
320320
max_allowed_temp_degC = 600
321321
if not isinstance(Twater_degC, numbers.Real) or Twater_degC < 0 or Twater_degC > max_allowed_temp_degC:
322322
raise ValueError(
323-
f'Invalid input for Twater_degC.'
323+
f'Invalid input for Twater_degC. '
324324
f'Twater_degC must be a non-negative number and must be within the range of 0 to {max_allowed_temp_degC} '
325325
f'degrees Celsius. The input value was: {Twater_degC}'
326326
)

0 commit comments

Comments
 (0)