diff options
author | mathieui <mathieui@mathieui.net> | 2021-03-14 16:38:51 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-04-02 17:44:36 +0200 |
commit | bc4f4f1e0766aedb6b0e9f3df90fee9ea841786c (patch) | |
tree | 2096afe6d76e256779fc882c6d95511eb51a749b | |
parent | 53633a5c4c8097c1cb356e5240be2a925fb8a631 (diff) | |
download | poezio-bc4f4f1e0766aedb6b0e9f3df90fee9ea841786c.tar.gz poezio-bc4f4f1e0766aedb6b0e9f3df90fee9ea841786c.tar.bz2 poezio-bc4f4f1e0766aedb6b0e9f3df90fee9ea841786c.tar.xz poezio-bc4f4f1e0766aedb6b0e9f3df90fee9ea841786c.zip |
fix: definition of commanddict
-rw-r--r-- | poezio/core/command_defs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/poezio/core/command_defs.py b/poezio/core/command_defs.py index b2fefa38..fb5c21ee 100644 --- a/poezio/core/command_defs.py +++ b/poezio/core/command_defs.py @@ -21,6 +21,7 @@ CommandDict = TypedDict( "func": Callable, "shortdesc": str, "desc": str, + "usage": str, "completion": Callable, }, total=False, |