Skip to content
Merged
Changes from 3 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
2 changes: 2 additions & 0 deletions pvlib/iotools/pvgis.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,8 @@
np.roll(tmy_data, tz, axis=0),
columns=tmy_data.columns,
index=new_index)
new_tmy_data = \ # GH 2399

Check failure on line 413 in pvlib/iotools/pvgis.py

View workflow job for this annotation

GitHub Actions / flake8-linter

E999 SyntaxError: unexpected character after line continuation character
new_tmy_data.astype(dtype=dict(zip(tmy_data.columns, tmy_data.dtypes)))
return new_tmy_data


Expand Down
Loading