From 8177f1bb0c465af3a8d4a065fef5acff1bcdde69 Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Sun, 19 Apr 2020 20:23:57 -0400 Subject: Added configurable padding to BorderedTable/AlternatingTable Updated comments --- examples/table_creation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/table_creation.py b/examples/table_creation.py index 605c20d9..85bfc3f0 100755 --- a/examples/table_creation.py +++ b/examples/table_creation.py @@ -24,7 +24,7 @@ bold_yellow = functools.partial(ansi.style, fg=ansi.fg.bright_yellow, bold=True) blue = functools.partial(ansi.style, fg=ansi.fg.bright_blue) green = functools.partial(ansi.style, fg=ansi.fg.green) -# Table Columns +# Table Columns (width does not account for any borders or padding which may be added) columns: List[Column] = list() columns.append(Column("Name", width=20)) columns.append(Column("Address", width=38)) -- cgit v1.2.1