From 1f86269bbbfe621a8ac73809fd56f72dbc29869d Mon Sep 17 00:00:00 2001 From: dtookey Date: Fri, 2 Oct 2020 14:47:04 -0400 Subject: [PATCH] updated documentation for command_test.py --- commands/command_base.py | 2 +- commands/implemented/command_test.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) 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):