diff options
author | mathieui <mathieui@mathieui.net> | 2021-03-13 21:13:00 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-03-13 21:13:00 +0100 |
commit | 6f73af71cd7e6d4f929da7a712a34f88efd6f9a1 (patch) | |
tree | ad75a3a5667f7f745a5d0198f4f8da4f5aa5675e | |
parent | ec6a98e99f6268b85b8c5059ab46cfd3fcc3d4c4 (diff) | |
download | poezio-6f73af71cd7e6d4f929da7a712a34f88efd6f9a1.tar.gz poezio-6f73af71cd7e6d4f929da7a712a34f88efd6f9a1.tar.bz2 poezio-6f73af71cd7e6d4f929da7a712a34f88efd6f9a1.tar.xz poezio-6f73af71cd7e6d4f929da7a712a34f88efd6f9a1.zip |
Fix a typo in core.structs.__all__
-rw-r--r-- | poezio/core/structs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/structs.py b/poezio/core/structs.py index 5866b19f..e4d42551 100644 --- a/poezio/core/structs.py +++ b/poezio/core/structs.py @@ -6,7 +6,7 @@ from typing import Any, Callable, List, Dict __all__ = [ 'Command', - 'Completion' + 'Completion', 'POSSIBLE_SHOW', 'Status', ] |