Skip to content
Snippets Groups Projects
Commit 5be7e0aa authored by Erik Reid's avatar Erik Reid
Browse files

add an empty cell before header rows

parent 176aa0bd
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,8 @@ def write_row_csv(columns, header=False):
def write_row_md(columns, header=False):
delimiter = '||' if header else '|'
if header:
columns = [' '] + columns
print(delimiter + delimiter.join(columns) + delimiter)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment