You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
269 B
Python

class Skill:
def __init__(self):
self.trigger_phrase = ""
def update_dashboard(self):
"""Call this function to update data for dashboard"""
pass #TODO: When implementing dashboard, have all skills inherit from this class and call update_dashboard when needed.