From 079977559c80973e6359ff933cb86d71a57ffe8f Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Thu, 15 Dec 2022 10:57:07 -0700 Subject: [PATCH 1/2] fix return docstring --- pvlib/singlediode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvlib/singlediode.py b/pvlib/singlediode.py index b800e1c730..9f5fd336ef 100644 --- a/pvlib/singlediode.py +++ b/pvlib/singlediode.py @@ -422,7 +422,7 @@ def bishop88_mpp(photocurrent, saturation_current, resistance_series, Returns ------- - OrderedDict or pandas.DataFrame + tuple max power current ``i_mp`` [A], max power voltage ``v_mp`` [V], and max power ``p_mp`` [W] """ From c0f17cb860ffa2edc9a2f6326bdf73bdae391017 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Thu, 15 Dec 2022 11:15:25 -0700 Subject: [PATCH 2/2] whatsnew --- docs/sphinx/source/whatsnew/v0.9.4.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/sphinx/source/whatsnew/v0.9.4.rst b/docs/sphinx/source/whatsnew/v0.9.4.rst index cebb864758..efac8f7d40 100644 --- a/docs/sphinx/source/whatsnew/v0.9.4.rst +++ b/docs/sphinx/source/whatsnew/v0.9.4.rst @@ -65,6 +65,7 @@ Documentation ~~~~~~~~~~~~~ * Added an FAQ page to the docs: :ref:`faq`. (:issue:`1546`, :pull:`1549`) * Fixed equation in :py:func:`pvlib.iam.martin_ruiz` docstring (:issue:`1561`, :pull:`1599`) +* Fixed an error in :py:func:`pvlib.singlediode.bishop88_mpp` docstring (:issue:`1613`, :pull:`1615`) Benchmarking ~~~~~~~~~~~~~