Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/sphinx/source/whatsnew/v0.15.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ Documentation
* Add AI checkbox to PR template, and auto-generate a comment on PRs
from first-time contributors regarding AI and contributing guidelines.
(:issue:`2617`, :pull:`2624`)
* Fix :py:class:`pvlib.pvsystem.PVSystem` docstring incorrectly stating
``module_type`` defaults to ``'glass_polymer'`` instead of ``None``.
(:issue:`2634`, :pull:`2713`)
* Fix a broken docstring reference to ``grounddiffuse`` in
:py:func:`pvlib.irradiance.poa_components`
(:issue:`2089`, :pull:`2708`)
Expand Down
2 changes: 1 addition & 1 deletion pvlib/pvsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class PVSystem:
module : string, optional
The model name of the modules.

module_type : string, default 'glass_polymer'
module_type : string, default None
Describes the module's construction. Valid strings are 'glass_polymer'
and 'glass_glass'. Used for cell and module temperature calculations.

Expand Down