from typing import List from .. import Module class TestMod(Module): PREFIX = "test" NAME = "test" async def command(self, cmd: List[str]): if cmd[0] == "test": channel = self._client.get_channel(self._config["channel_id"]) await channel.send("psycho frank is in the house")