Per XLSX documentation, the default Table style output from Xlsxwriter is
TableStyleMedium9.
I don't want to style the table at all, how to do that?
I tried passing {'style:' None}
and {'style:' False}
to add_table()
but those threw exceptions.
Reference: Worksheet.py
In Excel itself, the default style is called "Normal" (within VBA as well). Try passing that!