Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyjonbrazil committed Nov 24, 2023
1 parent f21cbd4 commit 4820668
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions jtbl/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
# START add DokuWiki table format
dokuwiki_format = {
"dokuwiki": tabulate.TableFormat(
lineabove=tabulate.Line("|", "-", "|", "|"),
linebelowheader=tabulate.Line("|", "-", "|", "|"),
linebetweenrows=None,
linebelow=None,
headerrow=tabulate.DataRow("^", "^", "^"),
datarow=tabulate.DataRow("|", "|", "|"),
padding=1,
with_header_hide=["lineabove", "linebelowheader"],
)
lineabove=tabulate.Line("|", "-", "|", "|"),
linebelowheader=tabulate.Line("|", "-", "|", "|"),
linebetweenrows=None,
linebelow=None,
headerrow=tabulate.DataRow("^", "^", "^"),
datarow=tabulate.DataRow("|", "|", "|"),
padding=1,
with_header_hide=["lineabove", "linebelowheader"],
)
}
tabulate._table_formats.update(dokuwiki_format) # type: ignore
# END add DokuWiki table format
Expand Down

0 comments on commit 4820668

Please sign in to comment.