Skip to content

Commit 52e70d0

Browse files
committed
Removed divider row from tab completion hint table
1 parent f27a7f3 commit 52e70d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd2/argparse_completer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ def _format_completions(self, action, completions: List[Union[str, CompletionIte
494494
cols.append(Column(destination.upper(), width=token_width))
495495
cols.append(Column(desc_header, width=desc_width))
496496

497-
hint_table = SimpleTable(cols)
497+
hint_table = SimpleTable(cols, divider_char=None)
498498
self._cmd2_app.completion_header = hint_table.generate_header()
499499
self._cmd2_app.display_matches = [hint_table.generate_data_row([item, item.description]) for item in completions]
500500

0 commit comments

Comments
 (0)