just some cleanups and ideas in hanez.json

This commit is contained in:
Johannes Findeisen 2013-09-19 21:12:03 +02:00
commit 8103e33299
4 changed files with 12 additions and 14 deletions

View file

@ -4,21 +4,11 @@ The task class.
class Task:
"""
Base class for all built-in Tasks.
"""
def set_task_type(self, taskType):
self._taskType = taskType
def get_task_type(self):
"""
:return: the type set by set_type_task
"""
return self._taskType
def some_other_irrelevant_methods(self):
pass
def execute(self, msg):
pass