Skip to content

Commit f360c86

Browse files
committed
freeze column headers
1 parent c093445 commit f360c86

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

lib/output.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def save_report_excel_file(self, output_file_path=None, worksheet_files=[]):
5858
workbook_name = filename
5959

6060
worksheet = workbook.add_worksheet(workbook_name)
61+
worksheet.freeze_panes(1, 0)
6162
with open(worksheet_file, 'rt', encoding='utf8') as f:
6263
reader = csv.reader(f)
6364
for r, row in enumerate(reader):

0 commit comments

Comments
 (0)