Skip to content

Commit e244343

Browse files
Fix linting errors.
1 parent 93d0559 commit e244343

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pvlib/bifacial.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ def build(report, pvarray):
176176

177177
@staticmethod
178178
def merge(reports):
179-
"""Works for dictionary reports. Merges the reports list of
180-
dictionaries by flattening the lists for each key into a single
179+
"""Works for dictionary reports. Merges the reports list of
180+
dictionaries by flattening the lists for each key into a single
181181
super list. Returns a dictionary with two list values."""
182182
# Dictionary comprehension obviates the need to check if there are more
183183
# than one report, and if one of the elements in reports is None.
184-
report = {k:[item for d in reports for item in d[k]]
184+
report = {k: [item for d in reports for item in d[k]]
185185
for k in reports[0].keys()}
186186
return report

0 commit comments

Comments
 (0)