Skip to content

Commit 6684b2e

Browse files
committed
lint
1 parent d34705c commit 6684b2e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

pvlib/ivtools/sdm/pvsyst.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def fit_pvsyst_iec61853_sandia_2025(effective_irradiance, temp_cell,
404404
-----
405405
Input arrays of operating conditions and electrical measurements must be
406406
1-D with equal lengths.
407-
407+
408408
This method is non-iterative. In some cases, it may be desirable to
409409
refine the estimated parameter values using a numerical optimizer like
410410
those provided in ``scipy.optimize``.
@@ -435,8 +435,7 @@ def fit_pvsyst_iec61853_sandia_2025(effective_irradiance, temp_cell,
435435
R_sh_ref, R_sh_0, R_sh_exp = \
436436
_fit_shunt_resistances_pvsyst_iec61853_sandia_2025(
437437
i_sc, i_mp, v_mp, effective_irradiance, temp_cell, beta_mp,
438-
coeff=r_sh_coeff, min_irradiance=min_Rsh_irradiance
439-
)
438+
coeff=r_sh_coeff, min_irradiance=min_Rsh_irradiance)
440439

441440
if R_s is None:
442441
R_s = _fit_series_resistance_pvsyst_iec61853_sandia_2025(v_oc, i_mp,
@@ -446,8 +445,7 @@ def fit_pvsyst_iec61853_sandia_2025(effective_irradiance, temp_cell,
446445
_fit_diode_ideality_factor_pvsyst_iec61853_sandia_2025(
447446
i_sc[is_t_stc], v_oc[is_t_stc], i_mp[is_t_stc], v_mp[is_t_stc],
448447
effective_irradiance[is_t_stc], temp_cell[is_t_stc],
449-
R_sh_ref, R_sh_0, R_sh_exp, R_s, cells_in_series
450-
)
448+
R_sh_ref, R_sh_0, R_sh_exp, R_s, cells_in_series)
451449

452450
I_o_ref = _fit_saturation_current_pvsyst_iec61853_sandia_2025(
453451
i_sc, v_oc, effective_irradiance, temp_cell, gamma_ref, mu_gamma,

0 commit comments

Comments
 (0)