Skip to content

Commit 66209e4

Browse files
authored
Fixed indentation issue
1 parent 5f59024 commit 66209e4

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
@@ -92,7 +92,7 @@ def read_bsrn(filename):
9292
if str(filename).endswith('.gz'): # check if file is a gzipped (.gz) file
9393
open_func, mode = gzip.open, 'rt'
9494
else:
95-
open_func, mode = open, 'r'
95+
open_func, mode = open, 'r'
9696
with open_func(filename, mode) as f:
9797
for num, line in enumerate(f):
9898
if num == 1: # Get month and year from the 2nd line

0 commit comments

Comments
 (0)