Skip to content

Commit

Permalink
updated mixins.py to pass flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
sellis-indeed committed Aug 3, 2016
1 parent a75d8a6 commit 05d5abd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report_builder/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def build_sheet(self, data, ws, sheet_name='report', header=None, widths=None):
ws.title = re.sub(r'\W+', '', sheet_name)[:30]
if header:
for i, header_cell in enumerate(header):
cell = ws.cell(row=first_row, column=i+column_base)
cell = ws.cell(row=first_row, column=i + column_base)
cell.value = header_cell
cell.font = Font(bold=True)
if widths:
Expand Down

0 comments on commit 05d5abd

Please sign in to comment.