Skip to content

Commit 1b4b98d

Browse files
committed
Fix linter
1 parent 6b5b644 commit 1b4b98d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pvlib/iotools/pvgis.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,8 @@ def _coerce_and_roll_tmy(tmy_data, tz, year):
410410
np.roll(tmy_data, tz, axis=0),
411411
columns=tmy_data.columns,
412412
index=new_index)
413-
new_tmy_data = new_tmy_data.astype(dtype=dict(zip(tmy_data.columns, tmy_data.dtypes)))
413+
new_tmy_data = \
414+
new_tmy_data.astype(dtype=dict(zip(tmy_data.columns, tmy_data.dtypes)))
414415
return new_tmy_data
415416

416417

0 commit comments

Comments
 (0)