We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 990ebf4 commit 018751fCopy full SHA for 018751f
keep/utils.py
@@ -9,7 +9,7 @@
9
import time
10
import click
11
import requests
12
-from terminaltables import SingleTable
+from terminaltables import AsciiTable
13
from textwrap import wrap
14
15
from keep import about
@@ -62,7 +62,7 @@ def list_commands(ctx):
62
for cmd, fields in commands.items():
63
table_data.append(['$ ' + cmd, fields['desc'], fields['alias']])
64
65
- table = SingleTable(table_data)
+ table = AsciiTable(table_data)
66
max_widths = [table.column_max_width(0), table.column_max_width(1)]
67
68
for i in range(len(table_data) - 1):
0 commit comments