How do permanently set the font size using xlswriter when you first create the workbook?
I tried:
book = xlsxwriter.Workbook(os.getcwd() + '\\test.xlsx')
sheet1 = book.add_worksheet()
format = book.add_format()
format.set_font_size(10)
But I still get the default size 11 in the output. What is the issue?