Fix all commands and cleanup

This commit is contained in:
BillSchumacher
2023-04-19 18:17:04 -05:00
parent 23c650ca10
commit d7679d755f
16 changed files with 63 additions and 83 deletions

View File

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