Removing gridlines from excel using python (openpyxl)

I'm trying to remove gridlines from excel worksheet which I created using openpyxl, and it's not working. I'm doing this: wb = Workbook() ws = wb.get_active_sheet() ws.show_gridlines = False p...