updated documentation for command_test.py

This commit is contained in:
dtookey 2020-10-02 14:47:04 -04:00
parent c6eb28d466
commit 1f86269bbb
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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):