Skip to content

Commit

Permalink
improving spreadsheet pretty-printing
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Jul 19, 2020
1 parent 885c495 commit 76d5caf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wc_utils/workbook/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def write_worksheet(self, sheet_name, data, style=None, validation=None, protect
title_format = self.xls_workbook.add_format()
title_format.set_align('left')
title_format.set_align('top')
title_format.set_text_wrap(True)
title_format.set_text_wrap(False)
title_format.set_font_name(style.font_family)
title_format.set_font_size(style.font_size)
title_format.set_bold(style.title_row_font_bold)
Expand Down

0 comments on commit 76d5caf

Please sign in to comment.