Skip to content

Commit

Permalink
added blank_table
Browse files Browse the repository at this point in the history
  • Loading branch information
robnagler committed Jul 23, 2024
1 parent 2af0c49 commit e626d70
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pykern/xlsx.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e626d70

Please sign in to comment.