Skip to content

Commit 87f1bf9

Browse files
committed
Add terminaltables to setup.py
1 parent f8bceac commit 87f1bf9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

keep/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ def list_commands(ctx):
6060
table_data = [['Command', 'Description', 'Alias']]
6161
commands = read_commands()
6262

63+
print(type(commands))
64+
6365
for cmd, fields in commands.items():
6466
table_data.append(['$ ' + cmd, fields['desc'], fields['alias']])
6567

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
install_requires=[
2929
'click',
3030
'requests',
31-
'tabulate'
31+
'terminaltables'
3232
],
3333
entry_points = {
3434
'console_scripts': [

0 commit comments

Comments
 (0)