This commit is contained in:
BillSchumacher
2023-04-19 18:21:03 -05:00
parent d7679d755f
commit 16f0e22ffa
6 changed files with 18 additions and 12 deletions

View File

@@ -20,7 +20,7 @@ class Command:
name: str,
description: str,
method: Callable[..., Any],
signature: str = '',
signature: str = "",
enabled: bool = True,
disabled_reason: Optional[str] = None,
):
@@ -126,7 +126,7 @@ class CommandRegistry:
def command(
name: str,
description: str,
signature: str = '',
signature: str = "",
enabled: bool = True,
disabled_reason: Optional[str] = None,
) -> Callable[..., Any]: