mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
7 lines
120 B
Python
7 lines
120 B
Python
from base import Task
|
|
|
|
|
|
class PrintInfo(Task):
|
|
def run(self, info):
|
|
super(PrintInfo, self).run(info)
|
|
print('info')
|