File tree Expand file tree Collapse file tree 2 files changed +27
-17
lines changed
docs/sphinx/source/whatsnew Expand file tree Collapse file tree 2 files changed +27
-17
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ Bug fixes
34
34
inputs. (:issue: `1071 `, :pull: `1072 `)
35
35
* Raise ``ValueError `` from :py:meth: `pvlib.modelchain.ModelChain.prepare_inputs `
36
36
when input does not have a 'dhi' column. (:issue: `1092 `, :pull: `1093 `)
37
+ * Add missing modules (including ``shading `` and ``scaling ``) to ``__init__.py ``.
38
+ (:pull: `1103 `)
37
39
38
40
Testing
39
41
~~~~~~~
Original file line number Diff line number Diff line change 1
1
from pvlib .version import __version__ # noqa: F401
2
- from pvlib import tools # noqa: F401
3
- from pvlib import atmosphere # noqa: F401
4
- from pvlib import clearsky # noqa: F401
5
- # from pvlib import forecast # noqa: F401
6
- from pvlib import irradiance # noqa: F401
7
- from pvlib import location # noqa: F401
8
- from pvlib import solarposition # noqa: F401
9
- from pvlib import iotools # noqa: F401
10
- from pvlib import ivtools # noqa: F401
11
- from pvlib import tracking # noqa: F401
12
- from pvlib import pvsystem # noqa: F401
13
- from pvlib import spa # noqa: F401
14
- from pvlib import modelchain # noqa: F401
15
- from pvlib import singlediode # noqa: F401
16
- from pvlib import bifacial # noqa: F401
17
- from pvlib import soiling # noqa: F401
18
- from pvlib import snow # noqa: F401
2
+
3
+ from pvlib import ( # noqa: F401
4
+ atmosphere ,
5
+ bifacial ,
6
+ clearsky ,
7
+ # forecast
8
+ iam ,
9
+ inverter ,
10
+ iotools ,
11
+ irradiance ,
12
+ ivtools ,
13
+ location ,
14
+ modelchain ,
15
+ pvsystem ,
16
+ scaling ,
17
+ shading ,
18
+ singlediode ,
19
+ snow ,
20
+ soiling ,
21
+ solarposition ,
22
+ spa ,
23
+ temperature ,
24
+ tools ,
25
+ tracking ,
26
+ )
You can’t perform that action at this time.
0 commit comments