diff --git a/commands/command_base.py b/commands/command_base.py index f3b479a..9bcbcb3 100644 --- a/commands/command_base.py +++ b/commands/command_base.py @@ -31,5 +31,5 @@ class AbstractCommand(metaclass=ABCMeta): return self.command @abstractmethod - def do_command(self, bot: Twitch_Module, twitch_message: twitch.chat.Message): + def do_command(self, bot, twitch_message): pass diff --git a/commands/implemented/command_test.py b/commands/implemented/command_test.py index c764dd8..d6fb5a5 100644 --- a/commands/implemented/command_test.py +++ b/commands/implemented/command_test.py @@ -4,6 +4,9 @@ from commands.command_base import AbstractCommand class CommandTest(AbstractCommand, metaclass=ABCMeta): + """ + this is a test command. and a poor excuse for a git commit. + """ command = "!test" def __init__(self):