diff options
author | Amjith Ramanujam <amjith.r@gmail.com> | 2023-08-25 07:43:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-25 07:43:02 -0700 |
commit | 5975d2010278fda42aa224be5770113fc15ee28f (patch) | |
tree | fd47751e91f8bd43d6223033ce947ff720038f87 | |
parent | e95c17f435ccc16f57d3f7dba52d546676690e0c (diff) | |
parent | 11a823130eca236300dc3dfe8307d33476614273 (diff) |
Merge pull request #162 from Kevin-Prichard/show_describe_in_help
Fix: 'describe' command doesn't appear in 'help'
-rw-r--r-- | litecli/packages/special/dbcommands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/litecli/packages/special/dbcommands.py b/litecli/packages/special/dbcommands.py index 203e1a8..3bba548 100644 --- a/litecli/packages/special/dbcommands.py +++ b/litecli/packages/special/dbcommands.py @@ -212,7 +212,7 @@ def load_extension(cur, arg, **_): "Description of a table", arg_type=PARSED_QUERY, case_sensitive=True, - aliases=("\\d", "describe", "desc"), + aliases=("\\d", "desc"), ) def describe(cur, arg, **_): if arg: |