def format_sales_report_header_row(ws, row_num=1):
"""
Sets first 26 columns of specified row in worksheet to bold
"""
for letter in ascii_uppercase:
cell = ws[letter + str(row_num)]
cell.font = Font(bold=True)
文章目录