We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8bceac commit 87f1bf9Copy full SHA for 87f1bf9
keep/utils.py
@@ -60,6 +60,8 @@ def list_commands(ctx):
60
table_data = [['Command', 'Description', 'Alias']]
61
commands = read_commands()
62
63
+ print(type(commands))
64
+
65
for cmd, fields in commands.items():
66
table_data.append(['$ ' + cmd, fields['desc'], fields['alias']])
67
setup.py
@@ -28,7 +28,7 @@
28
install_requires=[
29
'click',
30
'requests',
31
- 'tabulate'
+ 'terminaltables'
32
],
33
entry_points = {
34
'console_scripts': [
0 commit comments