We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71b07da commit 53ea45dCopy full SHA for 53ea45d
docs/sphinx/source/pvsystem.rst
@@ -199,7 +199,7 @@ for each array using the attributes `Array.surface_tilt` and `Array.surface_azim
199
array_two = pvsystem.Array(surface_tilt=30, surface_azimuth=220)
200
system = pvsystem.PVSystem(arrays=[array_one, array_two])
201
system.num_arrays
202
- [array.surface_tilt, array.surface_azimuth for array in system.arrays]
+ [(array.surface_tilt, array.surface_azimuth) for array in system.arrays]
203
204
205
The `surface_tilt` and `surface_azimuth` attributes are used in PVSystem
0 commit comments