Skip to content

Commit 17d9b0b

Browse files
authored
Fixed formatting/stickler issues
1 parent d7a5af8 commit 17d9b0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pvlib/iotools/bsrn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def read_bsrn(filename):
100100
else:
101101
with open(filename, 'r') as f:
102102
for num, line in enumerate(f):
103-
if num == 1: # Get month and year from the 2nd line
103+
if num == 1: # Get month and year from the 2nd line
104104
start_date = pd.Timestamp(year=int(line[7:11]),
105105
month=int(line[3:6]), day=1)
106106
if line.startswith('*'): # Find start of all logical records

0 commit comments

Comments
 (0)