diff --git a/persona/skills/chicken.py b/persona/skills/chicken.py index 5576e0a..52b79f9 100644 --- a/persona/skills/chicken.py +++ b/persona/skills/chicken.py @@ -2,13 +2,11 @@ from __future__ import annotations from typing import List import persona from persona import PersonaBaseSkill -from dataclasses import dataclass import datetime -import random import re class PersonaSkill(PersonaBaseSkill) : - """A simple test skill that responds to the message 'Hello' with 'Hello!'""" + """A simple test skill that responds to the joke 'Why did ____ cross the road?''""" def match_intent(self,message: Message) -> Bool : matches = re.search('^Why did the .* cross the road\?', message.text) if matches :