Skip to content

Commit 11d81c3

Browse files
committed
linter
1 parent 3893692 commit 11d81c3

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

pvlib/atmosphere.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,8 @@ def gueymard94_pw(temp_air, relative_humidity):
339339

340340
def rh_from_tdew(temp_air, temp_dew, coeff=(6.112, 17.62, 243.12)):
341341
"""
342-
Calculate relative humidity from dewpoint temperature using the Magnus equation.
342+
Calculate relative humidity from dewpoint temperature using the Magnus
343+
equation.
343344
344345
Parameters
345346
----------
@@ -373,11 +374,9 @@ def rh_from_tdew(temp_air, temp_dew, coeff=(6.112, 17.62, 243.12)):
373374
return relative_humidity
374375

375376

376-
def tdew_from_rh(
377-
temp_air, relative_humidity, coeff=(6.112, 17.62, 243.12)
378-
):
377+
def tdew_from_rh(temp_air, relative_humidity, coeff=(6.112, 17.62, 243.12)):
379378
"""
380-
Calculate dewpoint temperature using Magnus equation.
379+
Calculate dewpoint temperature using the Magnus equation.
381380
This is a reversal of the calculation in :py:func:`rh_from_tdew`.
382381
383382
Parameters

0 commit comments

Comments
 (0)