summaryrefslogtreecommitdiff
path: root/cmd2/table_creator.py
Commit message (Collapse)AuthorAgeFilesLines
* Made the amount of space between columns in a SimpleTable configurablecolumn_spacingKevin Van Brunt2021-04-211-11/+19
|
* Updated main code to use f-stringsKevin Van Brunt2021-04-131-5/+5
|
* Add mypy validation actionEric Lin2021-04-061-1/+1
|
* And that's the last of it. Passes mypy.Eric Lin2021-04-061-9/+13
|
* Added support for ANSI styles and newlines in tab completion resultsKevin Van Brunt2021-03-021-4/+2
|
* Moved empty line check in table creatorKevin Van Brunt2021-03-021-4/+5
|
* Fixed issue where TableCreator was tossing blank last linestable_newlineKevin Van Brunt2021-03-011-0/+4
|
* Deprecate Python 3.5Todd Leonhardt2021-02-201-20/+1
|
* Add in isort changesTodd Leonhardt2021-01-311-4/+12
|
* Add black for automatic code formatTodd Leonhardt2021-01-311-43/+66
|
* Added more validation to TableCreatorKevin Van Brunt2021-01-291-0/+4
|
* Fixed width calculation when table column headers had tabsKevin Van Brunt2021-01-281-17/+27
|
* Changed isort to force wrapping of imports to reduce merge conflicts from ↵Eric Lin2021-01-221-7/+23
| | | | minor import changes.
* Adding explicit python 3.5.3 test to nox, travis.Eric Lin2020-08-101-1/+10
| | | | Copied 3.5.4 definition of typing.Deque
* Added 'no cover' for code block which cannot be tested in our unit testsKevin Van Brunt2020-08-031-1/+1
|
* Added PyCharm warning suppressionsTodd Leonhardt2020-07-131-0/+2
|
* small simplificationTodd Leonhardt2020-07-131-2/+1
|
* slight cleanupTodd Leonhardt2020-07-131-2/+2
|
* Address fact that typing.Deque wasn't defined prior to 3.5.4Todd Leonhardt2020-07-131-1/+9
|
* Simplied table divider code for ease of readingKevin Van Brunt2020-06-011-3/+5
|
* Changed how SimpleTable creates divider when divider_char is wide. It no ↵Kevin Van Brunt2020-06-011-29/+43
| | | | longer stretches the width of the table.
* Changed SimpleTable.base_width() to a class method and added equivalent ↵Kevin Van Brunt2020-05-281-10/+30
| | | | method to BorderedTable.
* Updated argparse_completer to use TableCreator for the hint tableKevin Van Brunt2020-05-281-11/+51
|
* Updating documentation for table creationKevin Van Brunt2020-04-221-3/+5
|
* Updated docsKevin Van Brunt2020-04-221-3/+5
|
* Updated docstrings to work with sphinxKevin Van Brunt2020-04-201-10/+12
|
* Added configurable padding to BorderedTable/AlternatingTableKevin Van Brunt2020-04-191-53/+104
| | | | Updated comments
* Initial commit of table creation APIKevin Van Brunt2020-04-091-0/+748