diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-21 17:13:00 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-21 17:13:00 -0400 |
commit | 24c3d8d7bc9ebab4a89017389a2f79e66de4db18 (patch) | |
tree | ee9e47ba7e5e254ca5bf3480d7b331bf891fac2d /examples/table_display.py | |
parent | 92dd10ec702e0cde0ee1fd157957aa816f2c137f (diff) | |
parent | dbe485957b421f6fd973b3a493de7b264b363d54 (diff) | |
download | cmd2-git-24c3d8d7bc9ebab4a89017389a2f79e66de4db18.tar.gz |
Merge branch 'master' into alert_printer
Diffstat (limited to 'examples/table_display.py')
-rwxr-xr-x | examples/table_display.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/table_display.py b/examples/table_display.py index 75eada85..63447377 100755 --- a/examples/table_display.py +++ b/examples/table_display.py @@ -151,8 +151,8 @@ class TableDisplay(cmd2.Cmd): def ptable(self, rows, columns, grid_args, row_stylist): """Format tabular data for pretty-printing as a fixed-width table and then display it using a pager. - :param rows: required argument - can be a list-of-lists (or another iterable of iterables), a two-dimensional - NumPy array, or an Iterable of non-iterable objects + :param rows: can be a list-of-lists (or another iterable of iterables), a two-dimensional + NumPy array, or an Iterable of non-iterable objects :param columns: column headers and formatting options per column :param grid_args: argparse arguments for formatting the grid :param row_stylist: function to determine how each row gets styled |