updated documentation for command_test.py
This commit is contained in:
parent
c6eb28d466
commit
1f86269bbb
@ -31,5 +31,5 @@ class AbstractCommand(metaclass=ABCMeta):
|
|||||||
return self.command
|
return self.command
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def do_command(self, bot: Twitch_Module, twitch_message: twitch.chat.Message):
|
def do_command(self, bot, twitch_message):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@ -4,6 +4,9 @@ from commands.command_base import AbstractCommand
|
|||||||
|
|
||||||
|
|
||||||
class CommandTest(AbstractCommand, metaclass=ABCMeta):
|
class CommandTest(AbstractCommand, metaclass=ABCMeta):
|
||||||
|
"""
|
||||||
|
this is a test command. and a poor excuse for a git commit.
|
||||||
|
"""
|
||||||
command = "!test"
|
command = "!test"
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user