mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
13 lines
210 B
Python
13 lines
210 B
Python
|
|
|
|
class Task(object):
|
|
description = None
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def run(self, info):
|
|
pass
|
|
|
|
def __str__(self):
|
|
return '{module}.{task}'.format(module=self.__module__, task=self.__class__.__name__)
|