command-loader #6

Merged
alex_orid merged 15 commits from command-loader into master 2020-10-02 19:31:47 +00:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 1f86269bbb - Show all commits

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