From 6f73af71cd7e6d4f929da7a712a34f88efd6f9a1 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 13 Mar 2021 21:13:00 +0100 Subject: [PATCH] Fix a typo in core.structs.__all__ --- poezio/core/structs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', ]