mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
12 lines
216 B
Python
12 lines
216 B
Python
|
|
|
|
class Task(object):
|
|
phase = None
|
|
before = []
|
|
after = []
|
|
|
|
def __str__(self):
|
|
return '{module}.{task}'.format(module=self.__module__, task=self.__class__.__name__)
|
|
|
|
def __repr__(self):
|
|
return self.__str__()
|