summaryrefslogtreecommitdiff
path: root/poezio
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-03-14 16:38:51 +0100
committermathieui <mathieui@mathieui.net>2021-04-02 17:44:36 +0200
commitbc4f4f1e0766aedb6b0e9f3df90fee9ea841786c (patch)
tree2096afe6d76e256779fc882c6d95511eb51a749b /poezio
parent53633a5c4c8097c1cb356e5240be2a925fb8a631 (diff)
downloadpoezio-bc4f4f1e0766aedb6b0e9f3df90fee9ea841786c.tar.gz
poezio-bc4f4f1e0766aedb6b0e9f3df90fee9ea841786c.tar.bz2
poezio-bc4f4f1e0766aedb6b0e9f3df90fee9ea841786c.tar.xz
poezio-bc4f4f1e0766aedb6b0e9f3df90fee9ea841786c.zip
fix: definition of commanddict
Diffstat (limited to 'poezio')
-rw-r--r--poezio/core/command_defs.py1
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,