diff --git a/pykern/xlsx.py b/pykern/xlsx.py index 83f07677..6644ef25 100644 --- a/pykern/xlsx.py +++ b/pykern/xlsx.py @@ -771,6 +771,10 @@ def __init__(self, cfg): super().__init__(cfg) self.tables = [] + def blank_table(self): + """Create a table with one row, which is blank""" + self.table(title=f"blank_table-{len(self.tables)}").row() + def table(self, **kwargs): """Appends table to sheets